summaryrefslogtreecommitdiffstats
path: root/examples/mainwindows
diff options
context:
space:
mode:
authorMitch Curtis <mitch.curtis@nokia.com>2012-07-24 12:56:12 +0200
committerQt by Nokia <qt-info@nokia.com>2012-07-25 13:46:07 +0200
commitbb19bd3b612bfb82a4d42b5ec085185c05ae4f72 (patch)
tree75bdb4a0c61afba33c7aa1022345cedd02d5b9c4 /examples/mainwindows
parent11f8ad945cfa96b4b7ddddba77c265dc0e6feb98 (diff)
Correct status tips for Menus example.
Line spacing's status tip is incorrectly set to paragraph spacing's, and paragraph spacing's status tip is not set at all. Task-number: QTBUG-22736 Change-Id: I2c3ff2fa45221f1cf4af8e4323c383c998adb650 Reviewed-by: Jerome Pasion <jerome.pasion@nokia.com> Reviewed-by: Michalina Ziemba <michalina.ziemba@nokia.com>
Diffstat (limited to 'examples/mainwindows')
-rw-r--r--examples/mainwindows/menus/mainwindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/mainwindows/menus/mainwindow.cpp b/examples/mainwindows/menus/mainwindow.cpp
index f03f38788e..e1f3a0c099 100644
--- a/examples/mainwindows/menus/mainwindow.cpp
+++ b/examples/mainwindows/menus/mainwindow.cpp
@@ -276,7 +276,7 @@ void MainWindow::createActions()
connect(setLineSpacingAct, SIGNAL(triggered()), this, SLOT(setLineSpacing()));
setParagraphSpacingAct = new QAction(tr("Set &Paragraph Spacing..."), this);
- setLineSpacingAct->setStatusTip(tr("Change the gap between paragraphs"));
+ setParagraphSpacingAct->setStatusTip(tr("Change the gap between paragraphs"));
connect(setParagraphSpacingAct, SIGNAL(triggered()),
this, SLOT(setParagraphSpacing()));