summaryrefslogtreecommitdiffstats
path: root/tests/auto/tools/uic/baseline/authenticationdialog.ui.h
diff options
context:
space:
mode:
authorAlexander Volkov <a.volkov@rusbitech.ru>2017-08-28 17:42:50 +0300
committerAlexander Volkov <a.volkov@rusbitech.ru>2017-08-28 15:25:07 +0000
commitd61e61fa1a98fca48e35338a5672f586a1d31143 (patch)
tree1bf9550aec2da3705a7ad6e8f83b857e28cec8af /tests/auto/tools/uic/baseline/authenticationdialog.ui.h
parenteeaaac8f0e18680f80a142492675fa90a743f4ec (diff)
uic: Use nullptr instead of Q_NULLPTR in generated code
nullptr can be used directly in the Qt code since Qt 5.7. Use it in generated code for consistency. Change-Id: I249aeaf0a39b46ce1106b29d3ea4569a399908b7 Reviewed-by: Jarek Kobus <jaroslaw.kobus@qt.io>
Diffstat (limited to 'tests/auto/tools/uic/baseline/authenticationdialog.ui.h')
-rw-r--r--tests/auto/tools/uic/baseline/authenticationdialog.ui.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/auto/tools/uic/baseline/authenticationdialog.ui.h b/tests/auto/tools/uic/baseline/authenticationdialog.ui.h
index fbc379a1c1..2c760be6c8 100644
--- a/tests/auto/tools/uic/baseline/authenticationdialog.ui.h
+++ b/tests/auto/tools/uic/baseline/authenticationdialog.ui.h
@@ -106,12 +106,12 @@ public:
void retranslateUi(QDialog *Dialog)
{
- Dialog->setWindowTitle(QApplication::translate("Dialog", "Http authentication required", Q_NULLPTR));
- label->setText(QApplication::translate("Dialog", "You need to supply a Username and a Password to access this site", Q_NULLPTR));
- label_2->setText(QApplication::translate("Dialog", "Username:", Q_NULLPTR));
- label_3->setText(QApplication::translate("Dialog", "Password:", Q_NULLPTR));
- label_4->setText(QApplication::translate("Dialog", "Site:", Q_NULLPTR));
- siteDescription->setText(QApplication::translate("Dialog", "%1 at %2", Q_NULLPTR));
+ Dialog->setWindowTitle(QApplication::translate("Dialog", "Http authentication required", nullptr));
+ label->setText(QApplication::translate("Dialog", "You need to supply a Username and a Password to access this site", nullptr));
+ label_2->setText(QApplication::translate("Dialog", "Username:", nullptr));
+ label_3->setText(QApplication::translate("Dialog", "Password:", nullptr));
+ label_4->setText(QApplication::translate("Dialog", "Site:", nullptr));
+ siteDescription->setText(QApplication::translate("Dialog", "%1 at %2", nullptr));
} // retranslateUi
};