X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fuisupport%2Fnetworkmodelcontroller.cpp;h=10807d91b89d8b50771632de3e5aa04c66cdbab8;hb=71f48abcf1e4f9f852a2087bb30a2f187172c910;hp=aaccc05f380a1d39d724eb8591c2ab1de3367858;hpb=aebc2f7d1808b4ead2e0370f064ae3935c585840;p=quassel.git diff --git a/src/uisupport/networkmodelcontroller.cpp b/src/uisupport/networkmodelcontroller.cpp index aaccc05f..10807d91 100644 --- a/src/uisupport/networkmodelcontroller.cpp +++ b/src/uisupport/networkmodelcontroller.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2016 by the Quassel Project * + * Copyright (C) 2005-2018 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -362,6 +362,7 @@ void NetworkModelController::handleHideAction(ActionType type, QAction *action) return; case HideApplyToAll: BufferSettings().setMessageFilter(filter); + [[clang::fallthrough]]; case HideUseDefaults: if (_messageFilter) BufferSettings(_messageFilter->idString()).removeFilter(); @@ -413,6 +414,10 @@ void NetworkModelController::handleGeneralAction(ActionType type, QAction *actio if (networkId.isValid()) emit showChannelList(networkId); break; + case ShowNetworkConfig: + if (networkId.isValid()) + emit showNetworkConfig(networkId); + break; case ShowIgnoreList: if (networkId.isValid()) emit showIgnoreList(QString());