diff options
author | Oswald Buddenhagen <oswald.buddenhagen@nokia.com> | 2009-04-17 21:11:52 +0200 |
---|---|---|
committer | Oswald Buddenhagen <oswald.buddenhagen@nokia.com> | 2009-04-20 16:51:10 +0200 |
commit | 6d5eeb7afbf6bb29681b9dd88d4e1321ed1f8674 (patch) | |
tree | 07615aec177112842a026ba32c72c8f418ae1072 /src/plugins/helloworld/helloworldwindow.cpp | |
parent | 9db13e325576844970fe86fadd70b8ed5d230bc6 (diff) | |
download | qt-creator-6d5eeb7afbf6bb29681b9dd88d4e1321ed1f8674.tar.gz |
add missing tr()s, etc., add some //: comments
Diffstat (limited to 'src/plugins/helloworld/helloworldwindow.cpp')
-rw-r--r-- | src/plugins/helloworld/helloworldwindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/helloworld/helloworldwindow.cpp b/src/plugins/helloworld/helloworldwindow.cpp index 7ed3c8cee2..ddaa144f23 100644 --- a/src/plugins/helloworld/helloworldwindow.cpp +++ b/src/plugins/helloworld/helloworldwindow.cpp @@ -38,6 +38,6 @@ HelloWorldWindow::HelloWorldWindow(QWidget *parent) : QWidget(parent) { QBoxLayout *layout = new QVBoxLayout(this); - layout->addWidget(new QTextEdit("Focus me to activate my context!")); + layout->addWidget(new QTextEdit(tr("Focus me to activate my context!"))); setWindowTitle(tr("Hello, world!")); } |