aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/texteditor/basetexteditor.cpp
diff options
context:
space:
mode:
authorhjk <hjk121@nokiamail.com>2014-08-28 17:32:34 +0200
committerhjk <hjk121@nokiamail.com>2014-08-29 10:52:57 +0200
commitf42fff76971299b933539747b59a213712b644b9 (patch)
treecdbb4ca691a5c02d8bad50cb21f8a479172db82a /src/plugins/texteditor/basetexteditor.cpp
parent9e3441df8b178d9aafe2caccb38a446098bcdbd9 (diff)
Find: Avoid virtual signals
Very unusual construct... Task-number: QTCREATORBUG-12922 Change-Id: Ia7c3a3c2520ed53fdb83d91b50a0a6737f87d4f6 Reviewed-by: Eike Ziller <eike.ziller@digia.com>
Diffstat (limited to 'src/plugins/texteditor/basetexteditor.cpp')
-rw-r--r--src/plugins/texteditor/basetexteditor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/texteditor/basetexteditor.cpp b/src/plugins/texteditor/basetexteditor.cpp
index 86000507e3..6dbe1d03d0 100644
--- a/src/plugins/texteditor/basetexteditor.cpp
+++ b/src/plugins/texteditor/basetexteditor.cpp
@@ -490,7 +490,7 @@ BaseTextEditorWidgetPrivate::BaseTextEditorWidgetPrivate(BaseTextEditorWidget *p
{
Aggregation::Aggregate *aggregate = new Aggregation::Aggregate;
BaseTextFind *baseTextFind = new BaseTextFind(q);
- connect(baseTextFind, &BaseTextFind::highlightAll,
+ connect(baseTextFind, &BaseTextFind::highlightAllRequested,
this, &BaseTextEditorWidgetPrivate::highlightSearchResultsSlot);
connect(baseTextFind, &BaseTextFind::findScopeChanged,
this, &BaseTextEditorWidgetPrivate::setFindScope);