diff options
author | Guy Harris <guy@alum.mit.edu> | 2001-03-24 02:14:56 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2001-03-24 02:14:56 +0000 |
commit | 8ac0e6618a2d2bad339d7455de064c8383fab318 (patch) | |
tree | d0bb36cd7504a2e95c1230e9ddd906537a6277f4 | |
parent | 58369df4ef1f56a235db207e4015db50a820341f (diff) | |
download | wireshark-8ac0e6618a2d2bad339d7455de064c8383fab318.tar.gz wireshark-8ac0e6618a2d2bad339d7455de064c8383fab318.tar.bz2 wireshark-8ac0e6618a2d2bad339d7455de064c8383fab318.zip |
The declaration of "destroy_packet_wins()" belongs in
"gtk/packet_win.h", along with the declarations of the other packet
window manipulation routines; put it there.
svn path=/trunk/; revision=3180
-rw-r--r-- | file.c | 3 | ||||
-rw-r--r-- | gtk/packet_win.c | 3 | ||||
-rw-r--r-- | gtk/packet_win.h | 8 | ||||
-rw-r--r-- | ui_util.h | 5 |
4 files changed, 11 insertions, 8 deletions
@@ -1,7 +1,7 @@ /* file.c * File I/O routines * - * $Id: file.c,v 1.234 2001/03/24 02:07:20 guy Exp $ + * $Id: file.c,v 1.235 2001/03/24 02:14:54 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -85,6 +85,7 @@ #include "ui_util.h" #include "prefs.h" #include "gtk/proto_draw.h" +#include "gtk/packet_win.h" #include "dfilter/dfilter.h" #include "conversation.h" #include "globals.h" diff --git a/gtk/packet_win.c b/gtk/packet_win.c index af4092a7d5..1cef5b1305 100644 --- a/gtk/packet_win.c +++ b/gtk/packet_win.c @@ -3,7 +3,7 @@ * * Copyright 2000, Jeffrey C. Foster <jfoste@woodward.com> * - * $Id: packet_win.c,v 1.19 2001/03/23 14:44:04 jfoster Exp $ + * $Id: packet_win.c,v 1.20 2001/03/24 02:14:56 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -61,7 +61,6 @@ #include "util.h" #include "packet_win.h" #include "simple_dialog.h" -#include "ui_util.h" #include "proto_draw.h" #include "keys.h" #include "gtkglobals.h" diff --git a/gtk/packet_win.h b/gtk/packet_win.h index 6ca94550c1..37a63c4031 100644 --- a/gtk/packet_win.h +++ b/gtk/packet_win.h @@ -3,7 +3,7 @@ * * Copyright 2000, Jeffrey C. Foster <jfoste@woodward.com> * - * $Id: packet_win.h,v 1.6 2000/09/08 10:59:19 guy Exp $ + * $Id: packet_win.h,v 1.7 2001/03/24 02:14:56 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -27,7 +27,13 @@ #ifndef __PACKET_WIN_H__ #define __PACKET_WIN_H__ +/* Create a new packet window. */ extern void new_window_cb(GtkWidget *w); + +/* Destroy all popup packet windows. */ +void destroy_packet_wins(void); + +/* Redraw the hex dump panes of all packet windows. */ void redraw_hex_dump_packet_wins(void); #endif @@ -1,7 +1,7 @@ /* ui_util.h * Definitions for UI utility routines * - * $Id: ui_util.h,v 1.7 2001/03/24 02:07:20 guy Exp $ + * $Id: ui_util.h,v 1.8 2001/03/24 02:14:54 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -40,9 +40,6 @@ void set_main_window_name(gchar *); pop up the existing one rather than creating a new one. */ void reactivate_window(GtkWidget *); -/* Destroy all popup packet windows. */ -void destroy_packet_wins(void); - #ifdef __cplusplus } #endif /* __cplusplus */ |