You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When -DQT_NO_CAST_FROM_ASCII is defined, you cant call QChar(' ')(char) and QString("String")(const char*).
To avoid the QChar error we could use QChar(u' ') but this requires Qt >= 5.10.
For QString we could use QStringLiteral.
I created a issue because i don't want to create a pull request that requires Qt 5.10 without having your OK.
The text was updated successfully, but these errors were encountered:
When
-DQT_NO_CAST_FROM_ASCII
is defined, you cant callQChar(' ')
(char) andQString("String")
(const char*).To avoid the QChar error we could use
QChar(u' ')
but this requires Qt >= 5.10.For QString we could use
QStringLiteral
.I created a issue because i don't want to create a pull request that requires Qt 5.10 without having your OK.
The text was updated successfully, but these errors were encountered: