summaryrefslogtreecommitdiffstats
path: root/tests/auto/tools/uic/baseline/chatmainwindow.ui.h
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@nokia.com>2012-05-17 02:37:23 +0200
committerQt by Nokia <qt-info@nokia.com>2012-05-18 22:38:55 +0200
commit7968543bb0308395226a8847274dc3b836dd7b87 (patch)
tree9e449b49d0e2f271bdad50008954d735711a1606 /tests/auto/tools/uic/baseline/chatmainwindow.ui.h
parent8df298665a1e637ab6d26d5fcc447d5502afe31a (diff)
Don't use the deprecated translate() method anymore
The Encoding argument of QCoreApplication::translate() is deprecated and source code is always assumed to be encoded in Utf8. Simply remove the encoding argument from the generated .ui.h files. Change-Id: If6c40f6df13abd45a0303c863077972c3d1fb685 Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Diffstat (limited to 'tests/auto/tools/uic/baseline/chatmainwindow.ui.h')
-rw-r--r--tests/auto/tools/uic/baseline/chatmainwindow.ui.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/tests/auto/tools/uic/baseline/chatmainwindow.ui.h b/tests/auto/tools/uic/baseline/chatmainwindow.ui.h
index c077dd7501..0600d596c4 100644
--- a/tests/auto/tools/uic/baseline/chatmainwindow.ui.h
+++ b/tests/auto/tools/uic/baseline/chatmainwindow.ui.h
@@ -150,25 +150,25 @@ public:
void retranslateUi(QMainWindow *ChatMainWindow)
{
- ChatMainWindow->setWindowTitle(QApplication::translate("ChatMainWindow", "QtDBus Chat", 0, QApplication::UnicodeUTF8));
- actionQuit->setText(QApplication::translate("ChatMainWindow", "Quit", 0, QApplication::UnicodeUTF8));
- actionQuit->setShortcut(QApplication::translate("ChatMainWindow", "Ctrl+Q", 0, QApplication::UnicodeUTF8));
- actionAboutQt->setText(QApplication::translate("ChatMainWindow", "About Qt...", 0, QApplication::UnicodeUTF8));
- actionChangeNickname->setText(QApplication::translate("ChatMainWindow", "Change nickname...", 0, QApplication::UnicodeUTF8));
- actionChangeNickname->setShortcut(QApplication::translate("ChatMainWindow", "Ctrl+N", 0, QApplication::UnicodeUTF8));
+ ChatMainWindow->setWindowTitle(QApplication::translate("ChatMainWindow", "QtDBus Chat", 0));
+ actionQuit->setText(QApplication::translate("ChatMainWindow", "Quit", 0));
+ actionQuit->setShortcut(QApplication::translate("ChatMainWindow", "Ctrl+Q", 0));
+ actionAboutQt->setText(QApplication::translate("ChatMainWindow", "About Qt...", 0));
+ actionChangeNickname->setText(QApplication::translate("ChatMainWindow", "Change nickname...", 0));
+ actionChangeNickname->setShortcut(QApplication::translate("ChatMainWindow", "Ctrl+N", 0));
#ifndef QT_NO_TOOLTIP
- chatHistory->setToolTip(QApplication::translate("ChatMainWindow", "Messages sent and received from other users", 0, QApplication::UnicodeUTF8));
+ chatHistory->setToolTip(QApplication::translate("ChatMainWindow", "Messages sent and received from other users", 0));
#endif // QT_NO_TOOLTIP
- label->setText(QApplication::translate("ChatMainWindow", "Message:", 0, QApplication::UnicodeUTF8));
+ label->setText(QApplication::translate("ChatMainWindow", "Message:", 0));
#ifndef QT_NO_TOOLTIP
- sendButton->setToolTip(QApplication::translate("ChatMainWindow", "Sends a message to other people", 0, QApplication::UnicodeUTF8));
+ sendButton->setToolTip(QApplication::translate("ChatMainWindow", "Sends a message to other people", 0));
#endif // QT_NO_TOOLTIP
#ifndef QT_NO_WHATSTHIS
sendButton->setWhatsThis(QString());
#endif // QT_NO_WHATSTHIS
- sendButton->setText(QApplication::translate("ChatMainWindow", "Send", 0, QApplication::UnicodeUTF8));
- menuQuit->setTitle(QApplication::translate("ChatMainWindow", "Help", 0, QApplication::UnicodeUTF8));
- menuFile->setTitle(QApplication::translate("ChatMainWindow", "File", 0, QApplication::UnicodeUTF8));
+ sendButton->setText(QApplication::translate("ChatMainWindow", "Send", 0));
+ menuQuit->setTitle(QApplication::translate("ChatMainWindow", "Help", 0));
+ menuFile->setTitle(QApplication::translate("ChatMainWindow", "File", 0));
} // retranslateUi
};