X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcoreignorelistmanager.h;h=9decc5bb28dafb3e0be9f3de94ec032c557d4212;hp=5469574d97bc2d387574d83941ecdeda0d03f987;hb=b134e777b822b929a78455fd92146bf7443e9aa1;hpb=3e63cb8a6e83765069a45101b86ae9e21dcc57ad diff --git a/src/core/coreignorelistmanager.h b/src/core/coreignorelistmanager.h index 5469574d..9decc5bb 100644 --- a/src/core/coreignorelistmanager.h +++ b/src/core/coreignorelistmanager.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2018 by the Quassel Project * + * Copyright (C) 2005-2020 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -30,23 +30,22 @@ class CoreIgnoreListManager : public IgnoreListManager Q_OBJECT public: - explicit CoreIgnoreListManager(CoreSession *parent); + explicit CoreIgnoreListManager(CoreSession* parent); - 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(); };