X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcoreignorelistmanager.cpp;h=e3cc70b4893801140983cb6c9b935e3097a50e95;hp=140d1238647285a812c027f74462af6cb40b5671;hb=e49f87a6227dc6f82c17126a886cfc83ccf5e3ed;hpb=12feae2e4609b90c87d3c1857031909248143fd7 diff --git a/src/core/coreignorelistmanager.cpp b/src/core/coreignorelistmanager.cpp index 140d1238..e3cc70b4 100644 --- a/src/core/coreignorelistmanager.cpp +++ b/src/core/coreignorelistmanager.cpp @@ -24,7 +24,6 @@ #include "coresession.h" INIT_SYNCABLE_OBJECT(CoreIgnoreListManager) - CoreIgnoreListManager::CoreIgnoreListManager(CoreSession *parent) : IgnoreListManager(parent) { @@ -36,11 +35,20 @@ CoreIgnoreListManager::CoreIgnoreListManager(CoreSession *parent) } initSetIgnoreList(Core::getUserSetting(session->user(), "IgnoreList").toMap()); + + // we store our settings whenever they change + connect(this, SIGNAL(updatedRemotely()), SLOT(save())); + //if(isEmpty()) //loadDefaults(); } -CoreIgnoreListManager::~CoreIgnoreListManager() { +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); + return _match(rawMsg.text, rawMsg.sender, rawMsg.type, networkName, rawMsg.target); +} + +void CoreIgnoreListManager::save() const { CoreSession *session = qobject_cast(parent()); if(!session) { qWarning() << "CoreIgnoreListManager: unable to save IgnoreList. Parent is not a Coresession!";