fixing dependencies to core. MonolithicApplication is now a proper QObject
[quassel.git] / src / qtui / monoapplication.h
index 4050342..ff35ddd 100644 (file)
@@ -27,13 +27,16 @@ class ClientSyncer;
 class CoreApplicationInternal;
 
 class MonolithicApplication : public QtUiApplication {
+  Q_OBJECT
 public:
   MonolithicApplication(int &, char **);
   ~MonolithicApplication();
 
   bool init();
-  bool startInternalCore();
-  void connectClientSyncer(ClientSyncer *syncer);
+
+private slots:
+  void newClientSyncer(ClientSyncer *syncer);
+  void startInternalCore();
 
 private:
   CoreApplicationInternal *_internal;