diff options
author | Olivier Abad <oabad@noos.fr> | 2002-09-21 11:36:30 +0000 |
---|---|---|
committer | Olivier Abad <oabad@noos.fr> | 2002-09-21 11:36:30 +0000 |
commit | d72aca0b7ec946e137da3d04418ea6f4a4dc77d8 (patch) | |
tree | 0662da2707b2b10450d3dd11b484e2887c32ab10 /gtk/Makefile.am | |
parent | 820af9e2f22e0a84417fde57b7ef1d4c537a8a19 (diff) | |
download | wireshark-d72aca0b7ec946e137da3d04418ea6f4a4dc77d8.tar.gz wireshark-d72aca0b7ec946e137da3d04418ea6f4a4dc77d8.tar.bz2 wireshark-d72aca0b7ec946e137da3d04418ea6f4a4dc77d8.zip |
Removed all gtk calls in file.c :
- created a few packet_list_xxx functions (ui_util.h gtk/packet_list.c
gtk2/packet_list.c) ;
- removed almost all "gtk/xxx" and "gtk2/xxx" includes in file.c
The only remaining includes are related to color filters. We have to
make color_filter_t GUI independent by replacing GdkColor with color_t.
I'll work on this later.
svn path=/trunk/; revision=6311
Diffstat (limited to 'gtk/Makefile.am')
-rw-r--r-- | gtk/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gtk/Makefile.am b/gtk/Makefile.am index 49e40a1dbe..023c9e67c2 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.41 2002/09/07 10:02:24 sahlberg Exp $ +# $Id: Makefile.am,v 1.42 2002/09/21 11:36:27 oabad Exp $ # # Ethereal - Network traffic analyzer # By Gerald Combs <gerald@ethereal.com> @@ -72,6 +72,7 @@ libui_a_SOURCES = \ menu.h \ nameres_prefs.c \ nameres_prefs.h \ + packet_list.c \ packet_win.c \ packet_win.h \ plugins_dlg.c \ |