Removing the new chatwidget and other cruft from trunk (which is now our 0.2 branch)
[quassel.git] / src / qtui / mainwin.cpp
index b87d31c..2e7ce46 100644 (file)
@@ -22,7 +22,6 @@
 #include "aboutdlg.h"
 #include "chatwidget.h"
 #include "bufferview.h"
-#include "chatline.h"
 #include "chatline-old.h"
 #include "client.h"
 #include "clientbacklogmanager.h"
@@ -136,13 +135,6 @@ void MainWin::init() {
   ui.bufferWidget->setModel(Client::bufferModel());
   ui.bufferWidget->setSelectionModel(Client::bufferModel()->standardSelectionModel());
 
-  if(Global::SPUTDEV) {
-    //showSettingsDlg();
-    //showAboutDlg();
-    //showNetworkDlg();
-    //exit(1);
-  }
-
 }
 
 MainWin::~MainWin() {
@@ -397,7 +389,6 @@ void MainWin::disconnectedFromCore() {
 }
 
 AbstractUiMsg *MainWin::layoutMsg(const Message &msg) {
-  if(Global::SPUTDEV) return new ChatLine(msg);
   return new ChatLineOld(msg);
 }