X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcommon%2Faliasmanager.cpp;h=f87cd585cd6b8213fdbce989f828fd5513a93860;hb=1a5c1814a0c52f6f35e65c7033b2f896bf1188e3;hp=fc5510a3275811cef937416984f4300a6acdfd65;hpb=c1cf157116de7fc3da96203aa6f03c38c7ebb650;p=quassel.git diff --git a/src/common/aliasmanager.cpp b/src/common/aliasmanager.cpp index fc5510a3..f87cd585 100644 --- a/src/common/aliasmanager.cpp +++ b/src/common/aliasmanager.cpp @@ -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 * @@ -25,16 +25,6 @@ #include "network.h" -AliasManager& AliasManager::operator=(const AliasManager& other) -{ - if (this == &other) - return *this; - - SyncableObject::operator=(other); - _aliases = other._aliases; - return *this; -} - int AliasManager::indexOf(const QString& name) const { for (int i = 0; i < _aliases.count(); i++) {