diff options
author | David Boddie <dboddie@trolltech.com> | 2009-05-20 15:35:01 (GMT) |
---|---|---|
committer | David Boddie <dboddie@trolltech.com> | 2009-05-20 15:35:01 (GMT) |
commit | d5fad16bb0810ad2961643b54aef9674224f2509 (patch) | |
tree | 1b9f79ddb6b4d071afdb07a74fae563a18497890 /examples/tutorials/widgets/windowlayout | |
parent | efb14d56ef9cd327f6358f626f79e3ee88078600 (diff) | |
download | Qt-d5fad16bb0810ad2961643b54aef9674224f2509.zip Qt-d5fad16bb0810ad2961643b54aef9674224f2509.tar.gz Qt-d5fad16bb0810ad2961643b54aef9674224f2509.tar.bz2 |
Doc: Used QApplication::translate() instead of QObject::tr().
At some point, we may revise this to use plain C strings at first, then
introduce the concept of translations.
Reviewed-by: Trust Me
Diffstat (limited to 'examples/tutorials/widgets/windowlayout')
-rw-r--r-- | examples/tutorials/widgets/windowlayout/main.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/examples/tutorials/widgets/windowlayout/main.cpp b/examples/tutorials/widgets/windowlayout/main.cpp index 15a11e1..c30d669 100644 --- a/examples/tutorials/widgets/windowlayout/main.cpp +++ b/examples/tutorials/widgets/windowlayout/main.cpp @@ -47,7 +47,7 @@ int main(int argc, char *argv[]) QApplication app(argc, argv); QWidget window; //! [create, lay out widgets and show] - QLabel *label = new QLabel(QObject::tr("Name:")); + QLabel *label = new QLabel(QApplication::translate("windowlayout", "Name:")); QLineEdit *lineEdit = new QLineEdit(); QHBoxLayout *layout = new QHBoxLayout(); @@ -55,7 +55,8 @@ int main(int argc, char *argv[]) layout->addWidget(lineEdit); window.setLayout(layout); //! [create, lay out widgets and show] - window.setWindowTitle(QObject::tr("Window layout")); + window.setWindowTitle( + QApplication::translate("windowlayout", "Window layout")); window.show(); return app.exec(); } |