summaryrefslogtreecommitdiff
path: root/src/plugins/help/centralwidget.cpp
diff options
context:
space:
mode:
authorAlessandro Portale <aportale@trolltech.com>2009-07-13 17:35:17 +0200
committerAlessandro Portale <aportale@trolltech.com>2009-07-13 17:35:17 +0200
commitd3f9757916d5ba10eac63ef6c42611924999c3b0 (patch)
treed3da900526161354a6c1ea76f9e66247897977d3 /src/plugins/help/centralwidget.cpp
parentf9ed6f18bce732a0b440b40cb1cb930d779660ff (diff)
downloadqt-creator-d3f9757916d5ba10eac63ef6c42611924999c3b0.tar.gz
Removing some unused semicolons after Q_UNUSED
There were both variants, with and without extra semicolon.
Diffstat (limited to 'src/plugins/help/centralwidget.cpp')
-rw-r--r--src/plugins/help/centralwidget.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/help/centralwidget.cpp b/src/plugins/help/centralwidget.cpp
index 20ae95f006..89d711722b 100644
--- a/src/plugins/help/centralwidget.cpp
+++ b/src/plugins/help/centralwidget.cpp
@@ -354,7 +354,7 @@ void CentralWidget::printPreview(QPrinter *p)
if (viewer)
viewer->print(p);
#else
- Q_UNUSED(p);
+ Q_UNUSED(p)
#endif
}
@@ -513,7 +513,7 @@ void CentralWidget::setTabTitle(const QUrl& url)
}
}
#else
- Q_UNUSED(url);
+ Q_UNUSED(url)
#endif
if (viewer) {
@@ -643,7 +643,7 @@ bool CentralWidget::find(const QString &txt, QTextDocument::FindFlags findFlags,
HelpViewer* viewer = currentHelpViewer();
#if !defined(QT_NO_WEBKIT)
- Q_UNUSED(incremental);
+ Q_UNUSED(incremental)
if (viewer) {
QWebPage::FindFlags options = QWebPage::FindWrapsAroundDocument;
if (findFlags & QTextDocument::FindBackward)