From e4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 10 Apr 2024 22:34:10 +0200 Subject: Adding upstream version 4.2.2. Signed-off-by: Daniel Baumann --- ui/qt/follow_stream_action.cpp | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 ui/qt/follow_stream_action.cpp (limited to 'ui/qt/follow_stream_action.cpp') diff --git a/ui/qt/follow_stream_action.cpp b/ui/qt/follow_stream_action.cpp new file mode 100644 index 00000000..c9a946a1 --- /dev/null +++ b/ui/qt/follow_stream_action.cpp @@ -0,0 +1,29 @@ +/* follow_stream_action.cpp + * + * Wireshark - Network traffic analyzer + * By Gerald Combs + * Copyright 1998 Gerald Combs + * + * SPDX-License-Identifier: GPL-2.0-or-later + */ + +#include + +#include +#include +#include +#include +#include "follow_stream_action.h" + +#include + +#include + +FollowStreamAction::FollowStreamAction(QObject *parent, register_follow_t *follow) : + QAction(parent), + follow_(follow) +{ + if (follow_) { + setText(QString(tr("%1 Stream").arg(proto_get_protocol_short_name(find_protocol_by_id(get_follow_proto_id(follow)))))); + } +} -- cgit v1.2.3