summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorRohan McGovern <rohan.mcgovern@nokia.com>2010-01-22 01:41:32 (GMT)
committerRohan McGovern <rohan.mcgovern@nokia.com>2010-01-22 03:01:31 (GMT)
commitc4dc54a048202955d68262a20e0100f9856be303 (patch)
tree19460e40775f2b677050a501c536a95990a2d86a /tools
parent0e12da85f8f8ee8b5ddb32e518a25ef168cea9e7 (diff)
downloadQt-c4dc54a048202955d68262a20e0100f9856be303.zip
Qt-c4dc54a048202955d68262a20e0100f9856be303.tar.gz
Qt-c4dc54a048202955d68262a20e0100f9856be303.tar.bz2
Fixed compile when Qt is configured with -no-webkit
Diffstat (limited to 'tools')
-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 dab1ade..b772030 100644
--- a/tools/assistant/tools/assistant/centralwidget.cpp
+++ b/tools/assistant/tools/assistant/centralwidget.cpp
@@ -1121,7 +1121,7 @@ CentralWidget::setSourceFromSearch(const QUrl &url)
TRACE_OBJ
setSource(url);
#if defined(QT_NO_WEBKIT)
- highlightSearchTerms()
+ highlightSearchTerms();
#else
connect(currentHelpViewer(), SIGNAL(loadFinished(bool)), this,
SLOT(highlightSearchTerms()));
@@ -1134,7 +1134,7 @@ CentralWidget::setSourceFromSearchInNewTab(const QUrl &url)
TRACE_OBJ
setSourceInNewTab(url);
#if defined(QT_NO_WEBKIT)
- highlightSearchTerms()
+ highlightSearchTerms();
#else
connect(currentHelpViewer(), SIGNAL(loadFinished(bool)), this,
SLOT(highlightSearchTerms()));