X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2Fignorelistmanager.cpp;h=d0ab71fb0debc864e9a5a9a497097a2e904ad4d4;hp=24a26eca4fe9a3befbd5692679851680423d7da0;hb=097f625c4bd147f4127573ad8ab48555f9dc62d3;hpb=8961f348947fc55cc4bc769563684af3f2ea7ccc diff --git a/src/common/ignorelistmanager.cpp b/src/common/ignorelistmanager.cpp index 24a26eca..d0ab71fb 100644 --- a/src/common/ignorelistmanager.cpp +++ b/src/common/ignorelistmanager.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2019 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 * @@ -23,16 +23,6 @@ #include #include -IgnoreListManager& IgnoreListManager::operator=(const IgnoreListManager& other) -{ - if (this == &other) - return *this; - - SyncableObject::operator=(other); - _ignoreList = other._ignoreList; - return *this; -} - int IgnoreListManager::indexOf(const QString& ignore) const { for (int i = 0; i < _ignoreList.count(); i++) {