diff options
-rw-r--r-- | shell/ChangeLog | 6 | ||||
-rw-r--r-- | shell/evolution-storage-listener.c | 2 |
2 files changed, 8 insertions, 0 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 0858065aec..aca74fb3b8 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,5 +1,11 @@ 2000-09-11 Ettore Perazzoli <ettore@helixcode.com> + * evolution-storage-listener.c + (evolution_storage_listener_construct): Unset the `GTK_FLOATING' + flag as `EvolutionStorageListener' is self-owned. + +2000-09-11 Ettore Perazzoli <ettore@helixcode.com> + * e-storage.c (impl_list_folders): Removed. (impl_get_subfolder_paths): New static function, implementation for `::get_subfolder_paths'. diff --git a/shell/evolution-storage-listener.c b/shell/evolution-storage-listener.c index 250c884734..ee568bcdeb 100644 --- a/shell/evolution-storage-listener.c +++ b/shell/evolution-storage-listener.c @@ -279,6 +279,8 @@ evolution_storage_listener_construct (EvolutionStorageListener *listener, g_return_if_fail (priv->corba_objref == CORBA_OBJECT_NIL); priv->corba_objref = corba_objref; + + GTK_OBJECT_UNSET_FLAGS (GTK_OBJECT (object), GTK_FLOATING); } EvolutionStorageListener * |