Fixes #913 - Core backlog download does not start until main window is unhidden
[quassel.git] / src / client / clientbufferviewmanager.h
index 0963908..a413a8f 100644 (file)
@@ -27,6 +27,7 @@ class ClientBufferViewConfig;
 class BufferViewOverlay;
 
 class ClientBufferViewManager : public BufferViewManager {
+  SYNCABLE_OBJECT
   Q_OBJECT
 
 public:
@@ -35,15 +36,11 @@ public:
   QList<ClientBufferViewConfig *> clientBufferViewConfigs() const;
   ClientBufferViewConfig *clientBufferViewConfig(int bufferViewId) const;
 
+public slots:
+  virtual void setInitialized();
+
 protected:
   virtual BufferViewConfig *bufferViewConfigFactory(int bufferViewConfigId);
-
-signals:
-  void viewsInitialized();
-
-private slots:
-  void waitForConfigInit();
-  void configInitBarrier();
 };
 
 #endif //CLIENTBUFFERVIEWMANAGER_H