uisupport: Provide helpers for dealing with widget changes
[quassel.git] / src / core / coreircchannel.h
index 84932d5..b1b586b 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005-2012 by the Quassel Project                        *
+ *   Copyright (C) 2005-2018 by the Quassel Project                        *
  *   devel@quassel-irc.org                                                 *
  *                                                                         *
  *   This program is free software; you can redistribute it and/or modify  *
@@ -18,8 +18,7 @@
  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
  ***************************************************************************/
 
-#ifndef COREIRCCHANNEL_H
-#define COREIRCCHANNEL_H
+#pragma once
 
 #include "ircchannel.h"
 
 
 class CoreIrcChannel : public IrcChannel
 {
-    SYNCABLE_OBJECT
-        Q_OBJECT
+    Q_OBJECT
 
 public:
     CoreIrcChannel(const QString &channelname, Network *network);
-    virtual ~CoreIrcChannel();
-
-    inline virtual const QMetaObject *syncMetaObject() const { return &IrcChannel::staticMetaObject; }
+    ~CoreIrcChannel() override;
 
 #ifdef HAVE_QCA2
     Cipher *cipher() const;
@@ -53,6 +49,3 @@ private:
     mutable Cipher *_cipher;
 #endif
 };
-
-
-#endif //COREIRCCHANNEL_H