From dfcd06dfcfbca5e9a42cd62d16f50f79a39a78ef Mon Sep 17 00:00:00 2001 From: Jekyll Wu Date: Sun, 14 Aug 2011 21:52:09 +0800 Subject: [PATCH] adjust indentation. --- src/Application.cpp | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/Application.cpp b/src/Application.cpp index 028f79037..acb034a50 100644 --- a/src/Application.cpp +++ b/src/Application.cpp @@ -371,20 +371,20 @@ void Application::processProfileChangeArgs(KCmdLineArgs* args,MainWindow* window void Application::startBackgroundMode(MainWindow* window) { - if ( _backgroundInstance ) - { - return; - } + if ( _backgroundInstance ) + { + return; + } - KAction* action = new KAction(window); - KShortcut shortcut = action->shortcut(); - action->setObjectName( QLatin1String("Konsole Background Mode" )); - //TODO - Customizable key sequence for this - action->setGlobalShortcut( KShortcut(QKeySequence(Qt::Key_F12)) ); + KAction* action = new KAction(window); + KShortcut shortcut = action->shortcut(); + action->setObjectName( QLatin1String("Konsole Background Mode" )); + //TODO - Customizable key sequence for this + action->setGlobalShortcut( KShortcut(QKeySequence(Qt::Key_F12)) ); - _backgroundInstance = window; - - connect( action , SIGNAL(triggered()) , this , SLOT(toggleBackgroundInstance()) ); + _backgroundInstance = window; + + connect( action , SIGNAL(triggered()) , this , SLOT(toggleBackgroundInstance()) ); } void Application::toggleBackgroundInstance()