diff options
author | Rhys Weatherley <rhys.weatherley@nokia.com> | 2010-01-26 23:34:39 (GMT) |
---|---|---|
committer | Jason McDonald <jason.mcdonald@nokia.com> | 2010-02-01 08:37:40 (GMT) |
commit | 547898e5cad3d0b55f7ee95601365b9c2da194d7 (patch) | |
tree | b57504d5ca9e35048459d3ffaf89247db473d94a | |
parent | 1911ae477d130ae90c991dec8a5fe3ad8627de34 (diff) | |
download | Qt-547898e5cad3d0b55f7ee95601365b9c2da194d7.zip Qt-547898e5cad3d0b55f7ee95601365b9c2da194d7.tar.gz Qt-547898e5cad3d0b55f7ee95601365b9c2da194d7.tar.bz2 |
Compile with no-webkit - add missing semi-colons.
Reviewed-by: Sarah Smith
(cherry picked from commit 416cf8a5a9384f942282a2c715ec4832eeba001d)
-rw-r--r-- | tools/assistant/tools/assistant/centralwidget.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/assistant/tools/assistant/centralwidget.cpp b/tools/assistant/tools/assistant/centralwidget.cpp index c8f41e4..055fa1c 100644 --- a/tools/assistant/tools/assistant/centralwidget.cpp +++ b/tools/assistant/tools/assistant/centralwidget.cpp @@ -1088,7 +1088,7 @@ CentralWidget::setSourceFromSearch(const QUrl &url) { setSource(url); #if defined(QT_NO_WEBKIT) - highlightSearchTerms() + highlightSearchTerms(); #else connect(currentHelpViewer(), SIGNAL(loadFinished(bool)), this, SLOT(highlightSearchTerms())); @@ -1100,7 +1100,7 @@ CentralWidget::setSourceFromSearchInNewTab(const QUrl &url) { setSourceInNewTab(url); #if defined(QT_NO_WEBKIT) - highlightSearchTerms() + highlightSearchTerms(); #else connect(currentHelpViewer(), SIGNAL(loadFinished(bool)), this, SLOT(highlightSearchTerms())); |