From c9e536b9eb764cf3db96fd8942140db3333858fc Mon Sep 17 00:00:00 2001 From: Christian Stenger Date: Wed, 18 Sep 2019 13:06:55 +0200 Subject: ProjectExplorer: Use correct guard in connect Change-Id: I1784de2914d1c930c0b38fb3919cb8cfdc97dcf0 Reviewed-by: David Schulz Reviewed-by: Orgad Shaneh --- src/plugins/projectexplorer/appoutputpane.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/projectexplorer/appoutputpane.cpp b/src/plugins/projectexplorer/appoutputpane.cpp index df9fd503ba..8a5d120810 100644 --- a/src/plugins/projectexplorer/appoutputpane.cpp +++ b/src/plugins/projectexplorer/appoutputpane.cpp @@ -454,9 +454,9 @@ void AppOutputPane::createNewOutputWindow(RunControl *rc) tab.window->setFontZoom(fontZoom); }); connect(TextEditor::TextEditorSettings::instance(), &TextEditor::TextEditorSettings::fontSettingsChanged, - this, updateFontSettings); + ow, updateFontSettings); connect(TextEditor::TextEditorSettings::instance(), &TextEditor::TextEditorSettings::behaviorSettingsChanged, - this, updateBehaviorSettings); + ow, updateBehaviorSettings); auto *agg = new Aggregation::Aggregate; agg->add(ow); -- cgit v1.2.1