X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcoreeventmanager.h;h=de4878e695942848d0bfa24f4f55a572e01ea492;hp=41e5f1c9e10fc6d9fb02a843f768fcf5ca4757c7;hb=5b686746c880e5cda6d5de3e08180ea4332ff222;hpb=6f38b6fdeb73e726c24b26a97b98c9cfe0fc8a0e diff --git a/src/core/coreeventmanager.h b/src/core/coreeventmanager.h index 41e5f1c9..de4878e6 100644 --- a/src/core/coreeventmanager.h +++ b/src/core/coreeventmanager.h @@ -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 @@ -29,19 +29,20 @@ 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 { return _coreSession->network(id); } private: - CoreSession *_coreSession; + CoreSession *_coreSession; }; + #endif