X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2Fsyncableobject.h;h=c21630263522811fecacfc567126132c7746262b;hp=a5bb210d5074c85bc0a7fead8e50b50c82c53c69;hb=673ded0d543cbdc2cf6e746b6bee7c1d21af8f90;hpb=cc6e7c08709c4e761e2fd9c2e322751015497003 diff --git a/src/common/syncableobject.h b/src/common/syncableobject.h index a5bb210d..c2163026 100644 --- a/src/common/syncableobject.h +++ b/src/common/syncableobject.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2019 by the Quassel Project * + * Copyright (C) 2005-2020 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -58,7 +58,6 @@ class COMMON_EXPORT SyncableObject : public QObject public: SyncableObject(QObject* parent = nullptr); SyncableObject(const QString& objectName, QObject* parent = nullptr); - SyncableObject(const SyncableObject& other, QObject* parent = nullptr); ~SyncableObject() override; //! Stores the object's state into a QVariantMap. @@ -94,8 +93,6 @@ public slots: protected: void sync_call__(SignalProxy::ProxyMode modeType, const char* funcname, ...) const; - SyncableObject& operator=(const SyncableObject& other); - signals: void initDone(); void updatedRemotely();