aboutsummaryrefslogtreecommitdiffstats
path: root/ui/qt/proto_tree.cpp
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2015-07-30 12:23:03 -0700
committerGerald Combs <gerald@wireshark.org>2015-07-30 19:25:10 +0000
commit549b8f08e83f2b8a40abb5b879099d76da789cad (patch)
tree4a2ea687d874ba9a6edb5c7d19467efa6e18daa3 /ui/qt/proto_tree.cpp
parent16b048d34b51af0ddcfe6dd47865628bcd07223c (diff)
Add a missing menu item.
Add "Copy as Filter" to the packet list context menu. Remove completed item comments. Change-Id: I1e2d9ebcff2fb36918d3e7525690cfb105cb1b13 Reviewed-on: https://code.wireshark.org/review/9826 Reviewed-by: Gerald Combs <gerald@wireshark.org>
Diffstat (limited to 'ui/qt/proto_tree.cpp')
-rw-r--r--ui/qt/proto_tree.cpp12
1 files changed, 1 insertions, 11 deletions
diff --git a/ui/qt/proto_tree.cpp b/ui/qt/proto_tree.cpp
index 2034caa4f7..e22424d937 100644
--- a/ui/qt/proto_tree.cpp
+++ b/ui/qt/proto_tree.cpp
@@ -231,8 +231,8 @@ ProtoTree::ProtoTree(QWidget *parent) :
submenu->addAction(window()->findChild<QAction *>("actionEditCopyFieldName"));
submenu->addAction(window()->findChild<QAction *>("actionEditCopyValue"));
submenu->addSeparator();
- submenu->addAction(window()->findChild<QAction *>("actionEditCopyAsFilter"));
+ submenu->addAction(window()->findChild<QAction *>("actionEditCopyAsFilter"));
submenu->addSeparator();
action = window()->findChild<QAction *>("actionContextCopyBytesHexTextDump");
@@ -251,15 +251,6 @@ ProtoTree::ProtoTree(QWidget *parent) :
submenu->addAction(action);
copy_actions_ << action;
-// " <menu name= 'Bytes' action='/Copy/Bytes'>\n"
-// " <menuitem name='OffsetHexText' action='/Copy/Bytes/OffsetHexText'/>\n"
-// " <menuitem name='OffsetHex' action='/Copy/Bytes/OffsetHex'/>\n"
-// " <menuitem name='PrintableTextOnly' action='/Copy/Bytes/PrintableTextOnly'/>\n"
-// " <separator/>\n"
-// " <menuitem name='HexStream' action='/Copy/Bytes/HexStream'/>\n"
-// " <menuitem name='BinaryStream' action='/Copy/Bytes/BinaryStream'/>\n"
-// " </menu>\n"
-// " </menu>\n"
// " <menuitem name='ExportSelectedPacketBytes' action='/ExportSelectedPacketBytes'/>\n"
// ctx_menu_.addSeparator();
// " <menuitem name='WikiProtocolPage' action='/WikiProtocolPage'/>\n"
@@ -269,7 +260,6 @@ ProtoTree::ProtoTree(QWidget *parent) :
ctx_menu_.addSeparator();
decode_as_ = window()->findChild<QAction *>("actionAnalyzeDecodeAs");
ctx_menu_.addAction(decode_as_);
-// " <menuitem name='DisableProtocol' action='/DisableProtocol'/>\n"
// " <menuitem name='ResolveName' action='/ResolveName'/>\n"
// " <menuitem name='GotoCorrespondingPacket' action='/GotoCorrespondingPacket'/>\n"
ctx_menu_.addAction(window()->findChild<QAction *>("actionViewShowPacketReferenceInNewWindow"));