X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcore%2Fcoreignorelistmanager.h;h=204ce1e5c28edc84e0b08bea00549f2619c74715;hb=7c0eb0111b70089f563ee793e2b52036b76ca643;hp=f7b09bcb3a483b4a76a81f565e2a4cb1238ac761;hpb=68878dc8366f2f4a0afe132847aad9a51a80cdbf;p=quassel.git diff --git a/src/core/coreignorelistmanager.h b/src/core/coreignorelistmanager.h index f7b09bcb..204ce1e5 100644 --- a/src/core/coreignorelistmanager.h +++ b/src/core/coreignorelistmanager.h @@ -18,8 +18,7 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ -#ifndef COREIGNORELISTMANAGER_H -#define COREIGNORELISTMANAGER_H +#pragma once #include "ignorelistmanager.h" @@ -28,32 +27,25 @@ struct RawMessage; class CoreIgnoreListManager : public IgnoreListManager { - SYNCABLE_OBJECT - Q_OBJECT + Q_OBJECT public: - explicit CoreIgnoreListManager(CoreSession *parent); + explicit CoreIgnoreListManager(CoreSession* parent); - inline virtual const QMetaObject *syncMetaObject() const { return &IgnoreListManager::staticMetaObject; } - - StrictnessType match(const RawMessage &rawMsg, const QString &networkName); + StrictnessType match(const RawMessage& rawMsg, const QString& networkName); public slots: - virtual inline void requestToggleIgnoreRule(const QString &ignoreRule) { toggleIgnoreRule(ignoreRule); } - virtual inline void requestRemoveIgnoreListItem(const QString &ignoreRule) { removeIgnoreListItem(ignoreRule); } - virtual inline void requestAddIgnoreListItem(int type, const QString &ignoreRule, bool isRegEx, int strictness, - int scope, const QString &scopeRule, bool isActive) + inline void requestToggleIgnoreRule(const QString& ignoreRule) override { toggleIgnoreRule(ignoreRule); } + inline void requestRemoveIgnoreListItem(const QString& ignoreRule) override { removeIgnoreListItem(ignoreRule); } + inline void requestAddIgnoreListItem( + int type, const QString& ignoreRule, bool isRegEx, int strictness, int scope, const QString& scopeRule, bool isActive) override { addIgnoreListItem(type, ignoreRule, isRegEx, strictness, scope, scopeRule, isActive); } - private slots: void save() const; -//private: -// void loadDefaults(); + // private: + // void loadDefaults(); }; - - -#endif //COREIGNORELISTMANAGER_H