X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcorealiasmanager.h;h=941bd5753e079ce3d46069610dcd4d0f23f0402d;hp=79641df01c441b47518a5ecc9f0ebb792b2bfab7;hb=cc6e7c08709c4e761e2fd9c2e322751015497003;hpb=22d6ab71ce70b20f2d2657a27e968570b3dcb837 diff --git a/src/core/corealiasmanager.h b/src/core/corealiasmanager.h index 79641df0..941bd575 100644 --- a/src/core/corealiasmanager.h +++ b/src/core/corealiasmanager.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-09 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 * @@ -15,33 +15,28 @@ * 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 COREALIASMANAGER_H -#define COREALIASMANAGER_H +#pragma once #include "aliasmanager.h" class CoreSession; -class CoreAliasManager : public AliasManager { - SYNCABLE_OBJECT - Q_OBJECT +class CoreAliasManager : public AliasManager +{ + Q_OBJECT public: - explicit CoreAliasManager(CoreSession *parent); - - inline virtual const QMetaObject *syncMetaObject() const { return &AliasManager::staticMetaObject; } - - void save() const; + explicit CoreAliasManager(CoreSession* parent); protected: - const Network *network(NetworkId) const; + const Network* network(NetworkId) const override; -private: - void loadDefaults(); +private slots: + void save() const; +private: + void loadDefaults(); }; - -#endif //COREALIASMANAGER_H