Kerberos: add kerberos_inject_longterm_key() helper function
[wireshark-sm.git] / ui / qt / follow_stream_action.cpp
blob6f9cb5a5151f941af1dc1dcd091ee6fafd291b46
1 /* follow_stream_action.cpp
3 * Wireshark - Network traffic analyzer
4 * By Gerald Combs <gerald@wireshark.org>
5 * Copyright 1998 Gerald Combs
7 * SPDX-License-Identifier: GPL-2.0-or-later
8 */
10 #include <config.h>
12 #include <epan/packet_info.h>
13 #include <epan/proto_data.h>
14 #include <epan/packet.h>
15 #include "follow_stream_action.h"
17 #include <QMenu>
19 #include <ui/qt/utils/qt_ui_utils.h>
21 FollowStreamAction::FollowStreamAction(QObject *parent, register_follow_t *follow) :
22 QAction(parent),
23 follow_(follow)
25 if (follow_) {
26 setText(tr("%1 Stream").arg(proto_get_protocol_short_name(find_protocol_by_id(get_follow_proto_id(follow)))));