summaryrefslogtreecommitdiffstats
path: root/examples/tutorials/widgets/toplevel
diff options
context:
space:
mode:
authorDavid Boddie <dboddie@trolltech.com>2009-05-20 15:35:01 (GMT)
committerDavid Boddie <dboddie@trolltech.com>2009-05-20 15:35:01 (GMT)
commitd5fad16bb0810ad2961643b54aef9674224f2509 (patch)
tree1b9f79ddb6b4d071afdb07a74fae563a18497890 /examples/tutorials/widgets/toplevel
parentefb14d56ef9cd327f6358f626f79e3ee88078600 (diff)
downloadQt-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/toplevel')
-rw-r--r--examples/tutorials/widgets/toplevel/main.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/tutorials/widgets/toplevel/main.cpp b/examples/tutorials/widgets/toplevel/main.cpp
index 25ebd3f..f18fa6b 100644
--- a/examples/tutorials/widgets/toplevel/main.cpp
+++ b/examples/tutorials/widgets/toplevel/main.cpp
@@ -50,7 +50,8 @@ int main(int argc, char *argv[])
window.resize(320, 240);
window.show();
//! [create, resize and show]
- window.setWindowTitle(QObject::tr("Top-level widget"));
+ window.setWindowTitle(
+ QApplication::translate("toplevel", "Top-level widget"));
return app.exec();
}
//! [main program]