X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcoreeventmanager.h;h=e4bf96b592cec614f4dc917d09cdad4c85a7ea7d;hp=c637aa6be5fd811252468181a6dd467863150d63;hb=8961f348947fc55cc4bc769563684af3f2ea7ccc;hpb=695758015a80eb8c158a9ac4c0f1c0b547e70df3 diff --git a/src/core/coreeventmanager.h b/src/core/coreeventmanager.h index c637aa6b..e4bf96b5 100644 --- a/src/core/coreeventmanager.h +++ b/src/core/coreeventmanager.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2015 by the Quassel Project * + * Copyright (C) 2005-2019 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -30,16 +30,16 @@ class CoreEventManager : public EventManager Q_OBJECT public: - CoreEventManager(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