Hi,
a simple question this time... I hope.
I need a maxon::String
that looks like this:
© 2021 by some awesome developer
How can I get that copyright symbol in there?
This can't be it:
maxon::Utf32Char copyrightChar = 0x000000A9;
maxon::String copyright;
copyright.SetUtf32(©rightChar) iferr_ignore();
maxon::String theActualString = copyright + " 2021 by some awesome developer"_s;
It compiles, but using the resulting maxon::String
in a GeDialog
s static text element crashes when opening the dialog.
There probably I something about this in the SDK docs, but I couldn't find it.
Thanks in advance for help!
Cheers,
Frank