X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcommon%2Faliasmanager.cpp;h=f87cd585cd6b8213fdbce989f828fd5513a93860;hb=1a5c1814a0c52f6f35e65c7033b2f896bf1188e3;hp=d8dd082f9119f8ae703031002c65e6ee1bc74a3f;hpb=cc6e7c08709c4e761e2fd9c2e322751015497003;p=quassel.git diff --git a/src/common/aliasmanager.cpp b/src/common/aliasmanager.cpp index d8dd082f..f87cd585 100644 --- a/src/common/aliasmanager.cpp +++ b/src/common/aliasmanager.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 * @@ -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++) {