summaryrefslogtreecommitdiffstats
path: root/tools/assistant
diff options
context:
space:
mode:
authorRhys Weatherley <rhys.weatherley@nokia.com>2010-01-26 23:34:39 (GMT)
committerRhys Weatherley <rhys.weatherley@nokia.com>2010-01-26 23:34:39 (GMT)
commit416cf8a5a9384f942282a2c715ec4832eeba001d (patch)
tree4fd98ae05991fd30466bf59a911dd3cbea563b90 /tools/assistant
parent1944e412b48e2a529441aafa1782d9c14ef18bde (diff)
downloadQt-416cf8a5a9384f942282a2c715ec4832eeba001d.zip
Qt-416cf8a5a9384f942282a2c715ec4832eeba001d.tar.gz
Qt-416cf8a5a9384f942282a2c715ec4832eeba001d.tar.bz2
Compile with no-webkit - add missing semi-colons.
Reviewed-by: Sarah Smith
Diffstat (limited to 'tools/assistant')
-rw-r--r--tools/assistant/tools/assistant/centralwidget.cpp4
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()));