From e301ae96ed2b3f54280772d78b87a2b340c3432e Mon Sep 17 00:00:00 2001 From: Mariusz Glebocki Date: Sun, 24 Nov 2019 00:35:46 +0100 Subject: [PATCH] Fix indents --- src/ViewContainer.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ViewContainer.cpp b/src/ViewContainer.cpp index f3e42725..17d8c227 100644 --- a/src/ViewContainer.cpp +++ b/src/ViewContainer.cpp @@ -364,7 +364,7 @@ void TabbedViewContainer::connectTerminalDisplay(TerminalDisplay *display) { auto item = display->sessionController(); connect(item, &Konsole::SessionController::viewFocused, this, - &Konsole::TabbedViewContainer::currentSessionControllerChanged); + &Konsole::TabbedViewContainer::currentSessionControllerChanged); connect(item, &Konsole::ViewProperties::titleChanged, this, &Konsole::TabbedViewContainer::updateTitle); @@ -380,7 +380,7 @@ void TabbedViewContainer::disconnectTerminalDisplay(TerminalDisplay *display) { auto item = display->sessionController(); disconnect(item, &Konsole::SessionController::viewFocused, this, - &Konsole::TabbedViewContainer::currentSessionControllerChanged); + &Konsole::TabbedViewContainer::currentSessionControllerChanged); disconnect(item, &Konsole::ViewProperties::titleChanged, this, &Konsole::TabbedViewContainer::updateTitle);