Adapt to SignalProxy changes
authorManuel Nickschas <sputnick@quassel-irc.org>
Mon, 24 Aug 2009 21:26:30 +0000 (23:26 +0200)
committerManuel Nickschas <sputnick@quassel-irc.org>
Mon, 24 Aug 2009 23:16:03 +0000 (01:16 +0200)
src/client/clientignorelistmanager.cpp
src/client/clientignorelistmanager.h
src/common/ignorelistmanager.cpp
src/common/ignorelistmanager.h
src/core/coreignorelistmanager.cpp
src/core/coreignorelistmanager.h

index f042969..f4b1f91 100644 (file)
@@ -20,6 +20,8 @@
 
 #include "clientignorelistmanager.h"
 
 
 #include "clientignorelistmanager.h"
 
+INIT_SYNCABLE_OBJECT(ClientIgnoreListManager)
+
 ClientIgnoreListManager::ClientIgnoreListManager(QObject *parent)
     : IgnoreListManager(parent)
 {
 ClientIgnoreListManager::ClientIgnoreListManager(QObject *parent)
     : IgnoreListManager(parent)
 {
index 841ff4f..61a9c49 100644 (file)
@@ -25,6 +25,7 @@
 
 class ClientIgnoreListManager : public IgnoreListManager
 {
 
 class ClientIgnoreListManager : public IgnoreListManager
 {
+  SYNCABLE_OBJECT
   Q_OBJECT
 
 public:
   Q_OBJECT
 
 public:
index a9fb4c6..d6164b8 100644 (file)
@@ -26,6 +26,8 @@
 
 #include "message.h"
 
 
 #include "message.h"
 
+INIT_SYNCABLE_OBJECT(IgnoreListManager)
+
 IgnoreListManager &IgnoreListManager::operator=(const IgnoreListManager &other) {
   if(this == &other)
     return *this;
 IgnoreListManager &IgnoreListManager::operator=(const IgnoreListManager &other) {
   if(this == &other)
     return *this;
index a906b95..9ad4301 100644 (file)
@@ -29,6 +29,7 @@ class Message;
 
 class IgnoreListManager : public SyncableObject
 {
 
 class IgnoreListManager : public SyncableObject
 {
+  SYNCABLE_OBJECT
   Q_OBJECT
 public:
   inline IgnoreListManager(QObject *parent = 0) : SyncableObject(parent) { setAllowClientUpdates(true); }
   Q_OBJECT
 public:
   inline IgnoreListManager(QObject *parent = 0) : SyncableObject(parent) { setAllowClientUpdates(true); }
index db9cc7d..140d123 100644 (file)
@@ -23,6 +23,8 @@
 #include "core.h"
 #include "coresession.h"
 
 #include "core.h"
 #include "coresession.h"
 
+INIT_SYNCABLE_OBJECT(CoreIgnoreListManager)
+
 CoreIgnoreListManager::CoreIgnoreListManager(CoreSession *parent)
   : IgnoreListManager(parent)
 {
 CoreIgnoreListManager::CoreIgnoreListManager(CoreSession *parent)
   : IgnoreListManager(parent)
 {
index 9576c1b..d455d2c 100644 (file)
@@ -26,6 +26,7 @@
 class CoreSession;
 
 class CoreIgnoreListManager : public IgnoreListManager {
 class CoreSession;
 
 class CoreIgnoreListManager : public IgnoreListManager {
+  SYNCABLE_OBJECT
   Q_OBJECT
 
 public:
   Q_OBJECT
 
 public: