diff options
author | Guy Harris <guy@alum.mit.edu> | 2002-01-13 20:35:12 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2002-01-13 20:35:12 +0000 |
commit | 0a03b0f73ef7595d7281097c94cccefa13059f7e (patch) | |
tree | c255fb8cb7e40c899ad998c9846d1dabb5bb9562 /gtk/Makefile.am | |
parent | 649cc279d6dad12744f67a23fa335e9ee2f55627 (diff) | |
download | wireshark-0a03b0f73ef7595d7281097c94cccefa13059f7e.tar.gz wireshark-0a03b0f73ef7595d7281097c94cccefa13059f7e.tar.bz2 wireshark-0a03b0f73ef7595d7281097c94cccefa13059f7e.zip |
Add a preferences page for the name resolution flags.
Separate the preferences value for those flags and the name resolution
code's value into separate variables; this means that the resolution
code no longer depends on the preferences code, and may let us
eventually have the current setting and the preference setting differ
(so that a user can temporarily override the preference setting without
causing subsequent saves of the preferences to save the temporary
value).
Add routines to create various types of widgets for preferences, and to
fetch the values for "enumerated" preferences, and use them both in the
code to handle hardwired preference pages and table-driven preference
pages.
svn path=/trunk/; revision=4536
Diffstat (limited to 'gtk/Makefile.am')
-rw-r--r-- | gtk/Makefile.am | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gtk/Makefile.am b/gtk/Makefile.am index 07c4e69731..30e648d52e 100644 --- a/gtk/Makefile.am +++ b/gtk/Makefile.am @@ -1,7 +1,7 @@ # Makefile.am # Automake file for the GTK interface routines for Ethereal # -# $Id: Makefile.am,v 1.37 2002/01/10 07:43:39 guy Exp $ +# $Id: Makefile.am,v 1.38 2002/01/13 20:35:11 guy Exp $ # # Ethereal - Network traffic analyzer # By Gerald Combs <gerald@zing.org> @@ -71,6 +71,8 @@ libui_a_SOURCES = \ main.h \ menu.c \ menu.h \ + nameres_prefs.c \ + nameres_prefs.h \ packet_win.c \ packet_win.h \ plugins_dlg.c \ |