diff options
author | Ulf Lamping <ulf.lamping@web.de> | 2004-05-26 03:49:24 +0000 |
---|---|---|
committer | Ulf Lamping <ulf.lamping@web.de> | 2004-05-26 03:49:24 +0000 |
commit | 7d37fc9d23181cc3dfb42d42d2655a9b97ac6062 (patch) | |
tree | 1dd3c8757f1727f8591869b656d047a48c05c477 /gtk/column_prefs.c | |
parent | 3aaf65db46a1afc054911564f12a45ec2af63274 (diff) | |
download | wireshark-7d37fc9d23181cc3dfb42d42d2655a9b97ac6062.tar.gz wireshark-7d37fc9d23181cc3dfb42d42d2655a9b97ac6062.tar.bz2 wireshark-7d37fc9d23181cc3dfb42d42d2655a9b97ac6062.zip |
more code cleanup from dialog things:
changed window_xy (dialog) function calling in a lot of gtk files
cleanup of file selection code
cleanup in dlg_utils/file_dlg/ui_util
Please report any problems!!!
svn path=/trunk/; revision=11003
Diffstat (limited to 'gtk/column_prefs.c')
-rw-r--r-- | gtk/column_prefs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/column_prefs.c b/gtk/column_prefs.c index c1b0b95874..aa46192d4c 100644 --- a/gtk/column_prefs.c +++ b/gtk/column_prefs.c @@ -1,7 +1,7 @@ /* column_prefs.c * Dialog box for column preferences * - * $Id: column_prefs.c,v 1.22 2004/02/06 19:19:09 ulfl Exp $ + * $Id: column_prefs.c,v 1.23 2004/05/26 03:49:22 ulfl Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -681,5 +681,5 @@ column_prefs_destroy(GtkWidget *w) { /* Let the list cb know we're about to destroy the widget tree, so it */ /* doesn't operate on widgets that don't exist. */ OBJECT_SET_DATA(w, E_COL_CM_KEY, (gpointer)TRUE); - gtk_widget_destroy(GTK_WIDGET(w)); + window_destroy(GTK_WIDGET(w)); } |