modernize: Reformat ALL the source... again!
[quassel.git] / src / qtui / debugconsole.cpp
index a5a6eee..29ae930 100644 (file)
  ***************************************************************************/
 
 #include "debugconsole.h"
+
 #include "client.h"
 #include "signalproxy.h"
 
-DebugConsole::DebugConsole(QWidget *parent)
+DebugConsole::DebugConsole(QWidgetparent)
     : QDialog(parent)
 {
     ui.setupUi(this);
@@ -31,7 +32,6 @@ DebugConsole::DebugConsole(QWidget *parent)
     Client::signalProxy()->attachSlot(SIGNAL(scriptResult(QString)), this, SLOT(scriptResult(QString)));
 }
 
-
 void DebugConsole::on_evalButton_clicked()
 {
     if (ui.selectCore->isChecked()) {
@@ -39,7 +39,6 @@ void DebugConsole::on_evalButton_clicked()
     }
 }
 
-
 void DebugConsole::scriptResult(QString result)
 {
     ui.resultLabel->setText(result);