aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/summary_dlg.h
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2000-04-01 09:16:49 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2000-04-01 09:16:49 +0000
commita96b73e9da05e1a3cdcd3ac06dfb7bab2be9db22 (patch)
treea25a2b20f38ba96c5facb86f7f33f64c210d5114 /gtk/summary_dlg.h
parent944db7e736faf25ee616d99ae09357612c76f4c0 (diff)
No work need be done when a summary dialog box is destroyed, or when the
window manager tries to delete it, so no callback is needed for the "destroy" or "delete_event" signals (grabs are, at least in GTK+ 1.2.7, removed when a widget is destroyed, and there's no need for the destroy callback to destroy the widget itself; the delete event handler *could*, for example, pop up a dialog box saying "Do you really want to close this?", and allow the user to back out of the operation, but there's no unsaved work that would be lost by closing the window, so there's no point in having a delete event handler that does that). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@1771 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'gtk/summary_dlg.h')
-rw-r--r--gtk/summary_dlg.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/gtk/summary_dlg.h b/gtk/summary_dlg.h
index 04041fa10c..35c6662e48 100644
--- a/gtk/summary_dlg.h
+++ b/gtk/summary_dlg.h
@@ -1,7 +1,7 @@
/* summary_dlg.h
* Routines for capture file summary window
*
- * $Id: summary_dlg.h,v 1.1 1999/12/10 04:21:04 gram Exp $
+ * $Id: summary_dlg.h,v 1.2 2000/04/01 09:16:49 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -27,6 +27,5 @@
#define __SUMMARY_DLG_H__
void summary_open_cb(GtkWidget *w, gpointer d);
-void summary_destroy_cb(GtkWidget *w, gpointer d);
#endif /* __SUMMARY_DLG_H__ */