summaryrefslogtreecommitdiff
path: root/ui/qt/filter_action.cpp
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2014-08-08 12:59:42 +0200
committerGerald Combs <gerald@wireshark.org>2015-05-29 21:25:09 +0000
commit3827c81473f382ce72a0b0aab6ff0da1140692aa (patch)
tree885b4b614211c62ff7b9c918462ac3e2277245d3 /ui/qt/filter_action.cpp
parent486a530451d54c740f7efee2aad481529cb83108 (diff)
downloadwireshark-3827c81473f382ce72a0b0aab6ff0da1140692aa.tar.gz
Qt: Add Conversation Filter sub menu
Apply conversation filters using the new color_dissector_filters.[ch] from g1f03180. Change-Id: I2e535bb3d5b95fd26226422daf9f83c452a95e3c Reviewed-on: https://code.wireshark.org/review/3558 Petri-Dish: Gerald Combs <gerald@wireshark.org> Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Gerald Combs <gerald@wireshark.org>
Diffstat (limited to 'ui/qt/filter_action.cpp')
-rw-r--r--ui/qt/filter_action.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/ui/qt/filter_action.cpp b/ui/qt/filter_action.cpp
index dfb36e1593..e720b0e1b9 100644
--- a/ui/qt/filter_action.cpp
+++ b/ui/qt/filter_action.cpp
@@ -54,6 +54,7 @@ const QList<FilterAction::Action> FilterAction::actions() {
<< ActionApply
<< ActionPrepare
<< ActionFind
+ << ActionConversation
<< ActionColorize
<< ActionWebLookup
<< ActionCopy;
@@ -71,6 +72,9 @@ const QString FilterAction::actionName(Action action) {
case ActionFind:
return QObject::tr("Find");
break;
+ case ActionConversation:
+ return QObject::tr("Conversation Filter");
+ break;
case ActionColorize:
return QObject::tr("Colorize");
break;