X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcoreircchannel.h;h=b1b586b93b250c5e78514d2f4c2ac3caca10ed76;hp=3ae7a2144df29397fdd6b812746af462d8781e11;hb=900cce213a6ed000b7131a05a0dec7d04b35b023;hpb=694f9bfbf7f1af19108461c7e00d133e55082bce diff --git a/src/core/coreircchannel.h b/src/core/coreircchannel.h index 3ae7a214..b1b586b9 100644 --- a/src/core/coreircchannel.h +++ b/src/core/coreircchannel.h @@ -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 * @@ -15,11 +15,10 @@ * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ -#ifndef COREIRCCHANNEL_H -#define COREIRCCHANNEL_H +#pragma once #include "ircchannel.h" @@ -29,14 +28,11 @@ 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