X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcoreeventmanager.h;h=90c3838236c0e3d9683ebabbdb488d238861eb28;hp=41e5f1c9e10fc6d9fb02a843f768fcf5ca4757c7;hb=3a3e844f9fcfd12235a0086af75ecd503b621ef4;hpb=6f38b6fdeb73e726c24b26a97b98c9cfe0fc8a0e diff --git a/src/core/coreeventmanager.h b/src/core/coreeventmanager.h index 41e5f1c9..90c38382 100644 --- a/src/core/coreeventmanager.h +++ b/src/core/coreeventmanager.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,7 +15,7 @@ * 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 COREEVENTMANAGER_H @@ -25,23 +25,21 @@ #include "coresession.h" #include "eventmanager.h" -class CoreSession; - class CoreEventManager : public EventManager { - Q_OBJECT + Q_OBJECT public: - CoreEventManager(CoreSession *session) - : EventManager(session) - , _coreSession(session) - { } + CoreEventManager(CoreSession *session) + : EventManager(session) + , _coreSession(session) + {} protected: - inline Network *networkById(NetworkId id) const { return _coreSession->network(id); } + inline Network *networkById(NetworkId id) const override { return _coreSession->network(id); } private: - CoreSession *_coreSession; + CoreSession *_coreSession; }; #endif