Qt: remove codecs from about Wireshark dialog

Codecs were moved to plugins in g63af1da7e7, they are no more embedded in a library.

Change-Id: Id5448d2f83b1b4f7b1aac2620390f99da9327167
Reviewed-on: https://code.wireshark.org/review/35701
Reviewed-by: Pascal Quantin <pascal@wireshark.org>
Petri-Dish: Pascal Quantin <pascal@wireshark.org>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
This commit is contained in:
Pascal Quantin 2020-01-08 22:54:37 +01:00 committed by Anders Broman
parent 10ef28df30
commit 23a6fab52e
1 changed files with 0 additions and 21 deletions

View File

@ -240,27 +240,6 @@ get_gui_compiled_info(GString *str)
#else
g_string_append(str, ", with SpeexDSP (using bundled resampler)");
#endif
/* SBC */
#ifdef HAVE_SBC
g_string_append(str, ", with SBC");
#else
g_string_append(str, ", without SBC");
#endif
/* SpanDSP (G.722, G.726) */
#ifdef HAVE_SPANDSP
g_string_append(str, ", with SpanDSP");
#else
g_string_append(str, ", without SpanDSP");
#endif
/* BCG729 (G.729) */
#ifdef HAVE_BCG729
g_string_append(str, ", with bcg729");
#else
g_string_append(str, ", without bcg729");
#endif
}
// xxx copied from ../gtk/main.c