X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcorealiasmanager.h;h=7f01aa6ebb29adc23c760b5593899fe9d1d2b079;hp=521213110053e5117088441f1d2cfb158826b0af;hb=HEAD;hpb=694f9bfbf7f1af19108461c7e00d133e55082bce diff --git a/src/core/corealiasmanager.h b/src/core/corealiasmanager.h index 52121311..2dd379e8 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-2022 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 COREALIASMANAGER_H -#define COREALIASMANAGER_H +#pragma once #include "aliasmanager.h" @@ -27,16 +26,13 @@ class CoreSession; class CoreAliasManager : public AliasManager { - SYNCABLE_OBJECT - Q_OBJECT + Q_OBJECT public: - explicit CoreAliasManager(CoreSession *parent); - - inline virtual const QMetaObject *syncMetaObject() const { return &AliasManager::staticMetaObject; } + explicit CoreAliasManager(CoreSession* parent); protected: - const Network *network(NetworkId) const; + const Network* network(NetworkId) const override; private slots: void save() const; @@ -44,6 +40,3 @@ private slots: private: void loadDefaults(); }; - - -#endif //COREALIASMANAGER_H