So I upgraded to Qt5…I loaded my apps from QT4 and I fixed a # of issues like #includes to the Qt5 style. So it gets through most of files now without error. BUT, when it generates the UI headers, Qt actually generates the incorrect code like so:
iHighlightButton->setText(QApplication::translate(“DoubleGraphicView”, “Highlight Items”, 0, QApplication::UnicodeUTF8));
iUnHighlightButton->setText(QApplication::translate(“DoubleGraphicView”, “Unhighlight Items”, 0, QApplication::UnicodeUTF8));
So why would Qt5 generate this which are deprecated values in Qt5…? Am I missing a setting?
↧