X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcore%2Fcoreignorelistmanager.cpp;h=3017317131802e5ef4735e1de3f1f6b105590bfd;hb=db00831bca59a012242d1ad5fac52a20c6cd2956;hp=3b38ea4cc10feeaa70317541d597f9823e6c63d5;hpb=5b397a71c0f4827c3050659c39749d78831a0d6d;p=quassel.git diff --git a/src/core/coreignorelistmanager.cpp b/src/core/coreignorelistmanager.cpp index 3b38ea4c..30173171 100644 --- a/src/core/coreignorelistmanager.cpp +++ b/src/core/coreignorelistmanager.cpp @@ -23,37 +23,34 @@ #include "core.h" #include "coresession.h" -INIT_SYNCABLE_OBJECT(CoreIgnoreListManager) -CoreIgnoreListManager::CoreIgnoreListManager(CoreSession *parent) +CoreIgnoreListManager::CoreIgnoreListManager(CoreSession* parent) : IgnoreListManager(parent) { - CoreSession *session = qobject_cast(parent); + auto* session = qobject_cast(parent); if (!session) { qWarning() << "CoreIgnoreListManager: unable to load IgnoreList. Parent is not a Coresession!"; - //loadDefaults(); + // loadDefaults(); return; } initSetIgnoreList(Core::getUserSetting(session->user(), "IgnoreList").toMap()); // we store our settings whenever they change - connect(this, SIGNAL(updatedRemotely()), SLOT(save())); + connect(this, &SyncableObject::updatedRemotely, this, &CoreIgnoreListManager::save); - //if(isEmpty()) - //loadDefaults(); + // if(isEmpty()) + // loadDefaults(); } - -IgnoreListManager::StrictnessType CoreIgnoreListManager::match(const RawMessage &rawMsg, const QString &networkName) +IgnoreListManager::StrictnessType CoreIgnoreListManager::match(const RawMessage& rawMsg, const QString& networkName) { - //StrictnessType _match(const QString &msgContents, const QString &msgSender, Message::Type msgType, const QString &network, const QString &bufferName); + // StrictnessType _match(const QString &msgContents, const QString &msgSender, Message::Type msgType, const QString &network, const QString &bufferName); return _match(rawMsg.text, rawMsg.sender, rawMsg.type, networkName, rawMsg.target); } - void CoreIgnoreListManager::save() const { - CoreSession *session = qobject_cast(parent()); + auto* session = qobject_cast(parent()); if (!session) { qWarning() << "CoreIgnoreListManager: unable to save IgnoreList. Parent is not a Coresession!"; return; @@ -62,8 +59,7 @@ void CoreIgnoreListManager::save() const Core::setUserSetting(session->user(), "IgnoreList", initIgnoreList()); } - -//void CoreIgnoreListManager::loadDefaults() { +// void CoreIgnoreListManager::loadDefaults() { // foreach(IgnoreListItem item, IgnoreListManager::defaults()) { // addIgnoreListItem(item.contents(), item.isRegEx(), item.strictness(), item.scope(), // item.scopeRule());