summaryrefslogtreecommitdiffstats
path: root/tests/auto/tools/uic/baseline/chatmainwindow.ui.h
diff options
context:
space:
mode:
authorDyami Caliri <dyami@dragonframe.com>2016-08-16 20:52:14 -0700
committerMarc Mutz <marc.mutz@kdab.com>2016-09-03 05:07:50 +0000
commit816a6238761810c28a991a959ea61a834de2a2a5 (patch)
tree14f25fc6565dde3a9b235987b59b21dcaf9abb57 /tests/auto/tools/uic/baseline/chatmainwindow.ui.h
parent4e53159d431e39c03488517588669ae2cc9052d1 (diff)
uic: generate translate calls with Q_NULLPTR instead of 0
uic should use Q_NULLPTR instead of 0 as the default disambiguation context. Task-number: QTBUG-45291 Change-Id: I889182c7fe1c4be3336f3cd645aa60838863c633 Reviewed-by: Marc Mutz <marc.mutz@kdab.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 b3675746bf..8cfd9b4851 100644
--- a/tests/auto/tools/uic/baseline/chatmainwindow.ui.h
+++ b/tests/auto/tools/uic/baseline/chatmainwindow.ui.h
@@ -149,25 +149,25 @@ public:
void retranslateUi(QMainWindow *ChatMainWindow)
{
- ChatMainWindow->setWindowTitle(QApplication::translate("ChatMainWindow", "Qt D-Bus 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));
+ ChatMainWindow->setWindowTitle(QApplication::translate("ChatMainWindow", "Qt D-Bus Chat", Q_NULLPTR));
+ actionQuit->setText(QApplication::translate("ChatMainWindow", "Quit", Q_NULLPTR));
+ actionQuit->setShortcut(QApplication::translate("ChatMainWindow", "Ctrl+Q", Q_NULLPTR));
+ actionAboutQt->setText(QApplication::translate("ChatMainWindow", "About Qt...", Q_NULLPTR));
+ actionChangeNickname->setText(QApplication::translate("ChatMainWindow", "Change nickname...", Q_NULLPTR));
+ actionChangeNickname->setShortcut(QApplication::translate("ChatMainWindow", "Ctrl+N", Q_NULLPTR));
#ifndef QT_NO_TOOLTIP
- chatHistory->setToolTip(QApplication::translate("ChatMainWindow", "Messages sent and received from other users", 0));
+ chatHistory->setToolTip(QApplication::translate("ChatMainWindow", "Messages sent and received from other users", Q_NULLPTR));
#endif // QT_NO_TOOLTIP
- label->setText(QApplication::translate("ChatMainWindow", "Message:", 0));
+ label->setText(QApplication::translate("ChatMainWindow", "Message:", Q_NULLPTR));
#ifndef QT_NO_TOOLTIP
- sendButton->setToolTip(QApplication::translate("ChatMainWindow", "Sends a message to other people", 0));
+ sendButton->setToolTip(QApplication::translate("ChatMainWindow", "Sends a message to other people", Q_NULLPTR));
#endif // QT_NO_TOOLTIP
#ifndef QT_NO_WHATSTHIS
sendButton->setWhatsThis(QString());
#endif // QT_NO_WHATSTHIS
- sendButton->setText(QApplication::translate("ChatMainWindow", "Send", 0));
- menuQuit->setTitle(QApplication::translate("ChatMainWindow", "Help", 0));
- menuFile->setTitle(QApplication::translate("ChatMainWindow", "File", 0));
+ sendButton->setText(QApplication::translate("ChatMainWindow", "Send", Q_NULLPTR));
+ menuQuit->setTitle(QApplication::translate("ChatMainWindow", "Help", Q_NULLPTR));
+ menuFile->setTitle(QApplication::translate("ChatMainWindow", "File", Q_NULLPTR));
} // retranslateUi
};