From a08bebe65554753f123f8fadb5213a5a4d831c5b Mon Sep 17 00:00:00 2001 From: Miguel de Icaza Date: Tue, 9 Feb 1999 23:56:23 +0000 Subject: [PATCH] 1999-02-09 Miguel de Icaza * gcorba.c (impl_GNOME_FileManagerFactory_create_window): Fix bug spooted by federico. I was connecting to the wrong signal. --- gnome/ChangeLog | 5 +++++ gnome/gcorba.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gnome/ChangeLog b/gnome/ChangeLog index 2b35d6928..eb20bdda4 100644 --- a/gnome/ChangeLog +++ b/gnome/ChangeLog @@ -1,3 +1,8 @@ +1999-02-09 Miguel de Icaza + + * gcorba.c (impl_GNOME_FileManagerFactory_create_window): Fix bug + spooted by federico. I was connecting to the wrong signal. + 1999-02-09 Federico Mena Quintero * gtkdtree.c (gtk_dtree_class_init): Added two new signals, diff --git a/gnome/gcorba.c b/gnome/gcorba.c index 49212e997..f3c00801f 100644 --- a/gnome/gcorba.c +++ b/gnome/gcorba.c @@ -152,7 +152,7 @@ impl_GNOME_FileManagerFactory_create_window (impl_POA_GNOME_FileManagerFactory * newservant->mywin = new_panel_at ((dir && *dir) ? dir : home_dir); gtk_signal_connect(GTK_OBJECT(newservant->mywin->xwindow), - "destroy", impl_GNOME_FileManagerWindow_close, + "destroy", do_window_close, newservant); POA_GNOME_FileManagerWindow__init((PortableServer_Servant) newservant, ev);