QString Error
Unsolved
General and Desktop
-
from the qstring.h sources :
#if QT_DEPRECATED_SINCE(5, 0) QT_DEPRECATED static inline QString fromAscii(const char *str, int size = -1) { return fromLatin1(str, size); } QT_DEPRECATED static inline QString fromAscii(const QByteArray &str) { return fromLatin1(str); } Q_REQUIRED_RESULT QByteArray toAscii() const { return toLatin1(); } #endif
So obviously it is in there but, you have to change some settings in your app. I would follow @AlexMal 's advice however.