UI: Free up the -m flag.

The -m (monospace font) flag was deprecated in 2.2. Go ahead and remove
it in 2.3 / 2.4.

Change-Id: I6b4911174675cedec979621c2776353314e73eb1
Reviewed-on: https://code.wireshark.org/review/18193
Reviewed-by: Anders Broman <a.broman58@gmail.com>
This commit is contained in:
Gerald Combs 2016-10-13 15:45:45 -07:00 committed by Anders Broman
parent 9a6539990d
commit 37252634c4
2 changed files with 0 additions and 13 deletions

View File

@ -457,15 +457,6 @@ B<-S> flag).
List the data link types supported by the interface and exit.
=item -m E<lt>fontE<gt>
GTK+ only. Deprecated.
Set the name of the monospace font used in the packet list, packet detail,
packet bytes, and other views. This option is deprecated and will be removed
in a future version of Wireshark. Use B<-o gui.qt.font_name> or
B<-o gui.gtk2.font_name> instead.
=item -n
Disable network object name resolution (such as hostname, TCP and UDP port

View File

@ -472,10 +472,6 @@ void commandline_other_options(int argc, char *argv[], gboolean opt_reset)
arg_error = TRUE;
#endif
break;
case 'm': /* Fixed-width font for the display. GTK+ only. */
g_free(global_commandline_info.prefs_p->gui_gtk2_font_name);
global_commandline_info.prefs_p->gui_gtk2_font_name = g_strdup(optarg);
break;
case 'n': /* No name resolution */
disable_name_resolution();
break;