'UnicodeUTF8' is not a member of 'QCoreApplication'[SOLVED]
-
It means that somewhere there is a call to UnicodeUTF8 on a QCoreApplication object or something like QCoreApplication::UnicodeUTF8.
But there is not nothing called UnicodeUTF8 in the QCoreApplication class
-
First, can you show where you call that ?
UnicodeUTF8 is part of QCoreApplication, so it seems there is something very wrong going on.
-
are you using Qt 5? If so QApplication::UnicodeUTF8 is deprecated. You would need to change
@
CMenuShipListClass->setWindowTitle(QApplication::translate(“CMenuShipListClass”, “Ship List”, 0, QApplication::UnicodeUTF8));
@to
@
CMenuShipListClass->setWindowTitle(QApplication::translate(“CMenuShipListClass”, “Ship List”, 0));
@read here: http://qt-project.org/wiki/Transition_from_Qt_4.x_to_Qt5
-
Haha... The solution would be more apparent if you mentioned earlier(speaking of solution you might want to mark this as [SOLVED])
If you discovered anything new when porting from Qt4 to Qt5 feel free to add to the wiki article. In fact the UTF8 section was added by me (:
-
Simply edit the thread's title and prepend [solved] :)
-
Please don't mix questions in a thread, you've already started several threads about QPlastiqueStyle.