summaryrefslogtreecommitdiffstats
path: root/tests/auto/tools/uic/baseline/newform.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/newform.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/newform.ui.h')
-rw-r--r--tests/auto/tools/uic/baseline/newform.ui.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/auto/tools/uic/baseline/newform.ui.h b/tests/auto/tools/uic/baseline/newform.ui.h
index c5eb226322..f1ec2f02a4 100644
--- a/tests/auto/tools/uic/baseline/newform.ui.h
+++ b/tests/auto/tools/uic/baseline/newform.ui.h
@@ -139,11 +139,11 @@ public:
void retranslateUi(QDialog *NewForm)
{
- NewForm->setWindowTitle(QApplication::translate("NewForm", "New Form", 0));
+ NewForm->setWindowTitle(QApplication::translate("NewForm", "New Form", Q_NULLPTR));
QTreeWidgetItem *___qtreewidgetitem = treeWidget->headerItem();
- ___qtreewidgetitem->setText(0, QApplication::translate("NewForm", "0", 0));
- lblPreview->setText(QApplication::translate("NewForm", "Choose a template for a preview", 0));
- chkShowOnStartup->setText(QApplication::translate("NewForm", "Show this Dialog on Startup", 0));
+ ___qtreewidgetitem->setText(0, QApplication::translate("NewForm", "0", Q_NULLPTR));
+ lblPreview->setText(QApplication::translate("NewForm", "Choose a template for a preview", Q_NULLPTR));
+ chkShowOnStartup->setText(QApplication::translate("NewForm", "Show this Dialog on Startup", Q_NULLPTR));
} // retranslateUi
};