aboutsummaryrefslogtreecommitdiffstats
path: root/wireshark-qt.cpp
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2015-10-01 15:51:34 -0700
committerGerald Combs <gerald@wireshark.org>2015-10-02 18:29:41 +0000
commit9498c8d84a8b2dbb6c3d0302f337a0f9fb35572d (patch)
tree6854b4597c6c99c99eaf8a82d6630b709448c7fe /wireshark-qt.cpp
parent3687d393040a40655d84e3e03417a474032bad86 (diff)
Qt: Show the QtMultimedia status.
Show the QtMultimedia status in the compiled version info instead of PortAudio. Change-Id: Id4a657b1a65e4d0127a3a36643d1c446ed79b8e5 Reviewed-on: https://code.wireshark.org/review/10742 Reviewed-by: Gerald Combs <gerald@wireshark.org>
Diffstat (limited to 'wireshark-qt.cpp')
-rw-r--r--wireshark-qt.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/wireshark-qt.cpp b/wireshark-qt.cpp
index 736f532317..6674631078 100644
--- a/wireshark-qt.cpp
+++ b/wireshark-qt.cpp
@@ -329,7 +329,11 @@ get_gui_compiled_info(GString *str)
epan_get_compiled_version_info(str);
g_string_append(str, ", ");
- g_string_append(str, "without PortAudio");
+#ifdef QT_MULTIMEDIA_LIB
+ g_string_append(str, "with QtMultimedia");
+#else
+ g_string_append(str, "without QtMultimedia");
+#endif
g_string_append(str, ", ");
#ifdef HAVE_AIRPCAP