Fitting the SyncableObjects to the new Style
[quassel.git] / src / client / clientbufferviewconfig.h
index 1bd188f..5f6c0ed 100644 (file)
@@ -24,6 +24,7 @@
 #include "bufferviewconfig.h"
 
 class ClientBufferViewConfig : public BufferViewConfig {
+  SYNCABLE_OBJECT
   Q_OBJECT
 
 public:
@@ -34,6 +35,9 @@ public:
   inline void lock() { setLocked(true); };
   inline void unlock() { setLocked(false); };
 
+private slots:
+  void ensureDecoration(); // remove this in next release
+
 private:
   bool _locked;
 };