summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRhys Weatherley <rhys.weatherley@nokia.com>2010-01-26 23:34:39 (GMT)
committerPrasanth Ullattil <prasanth.ullattil@nokia.com>2010-01-27 15:30:30 (GMT)
commitac0462a6f077316fffd555f45522e38a1e6f53d2 (patch)
treee6b75db1f36dcebc7a4d9cb326261df3a420b165
parentc55229b3fc8dfb92abdaa633609aae75fa10e06d (diff)
downloadQt-ac0462a6f077316fffd555f45522e38a1e6f53d2.zip
Qt-ac0462a6f077316fffd555f45522e38a1e6f53d2.tar.gz
Qt-ac0462a6f077316fffd555f45522e38a1e6f53d2.tar.bz2
Compile with no-webkit - add missing semi-colons.
Reviewed-by: Sarah Smith
-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()));