summaryrefslogtreecommitdiffstats
path: root/tests/auto/tools/uic/baseline/tabbedbrowser.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/tabbedbrowser.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/tabbedbrowser.ui.h')
-rw-r--r--tests/auto/tools/uic/baseline/tabbedbrowser.ui.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/auto/tools/uic/baseline/tabbedbrowser.ui.h b/tests/auto/tools/uic/baseline/tabbedbrowser.ui.h
index 79c70c0440..571138771d 100644
--- a/tests/auto/tools/uic/baseline/tabbedbrowser.ui.h
+++ b/tests/auto/tools/uic/baseline/tabbedbrowser.ui.h
@@ -188,14 +188,14 @@ public:
void retranslateUi(QWidget *TabbedBrowser)
{
- TabbedBrowser->setWindowTitle(QApplication::translate("TabbedBrowser", "TabbedBrowser", 0));
- tab->setTabText(tab->indexOf(frontpage), QApplication::translate("TabbedBrowser", "Untitled", 0));
+ TabbedBrowser->setWindowTitle(QApplication::translate("TabbedBrowser", "TabbedBrowser", Q_NULLPTR));
+ tab->setTabText(tab->indexOf(frontpage), QApplication::translate("TabbedBrowser", "Untitled", Q_NULLPTR));
toolClose->setText(QString());
- toolPrevious->setText(QApplication::translate("TabbedBrowser", "Previous", 0));
- toolNext->setText(QApplication::translate("TabbedBrowser", "Next", 0));
- checkCase->setText(QApplication::translate("TabbedBrowser", "Case Sensitive", 0));
- checkWholeWords->setText(QApplication::translate("TabbedBrowser", "Whole words", 0));
- labelWrapped->setText(QApplication::translate("TabbedBrowser", "<img src=\":/qt-project.org/assistant/images/wrap.png\">&nbsp;Search wrapped", 0));
+ toolPrevious->setText(QApplication::translate("TabbedBrowser", "Previous", Q_NULLPTR));
+ toolNext->setText(QApplication::translate("TabbedBrowser", "Next", Q_NULLPTR));
+ checkCase->setText(QApplication::translate("TabbedBrowser", "Case Sensitive", Q_NULLPTR));
+ checkWholeWords->setText(QApplication::translate("TabbedBrowser", "Whole words", Q_NULLPTR));
+ labelWrapped->setText(QApplication::translate("TabbedBrowser", "<img src=\":/qt-project.org/assistant/images/wrap.png\">&nbsp;Search wrapped", Q_NULLPTR));
} // retranslateUi
};