diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2001-05-03 20:18:43 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2001-05-03 20:18:43 +0800 |
commit | 9a904c937f8fecd8dd7ead89c1d05008932f6ead (patch) | |
tree | b9c85243a0819f4695847b007088df3ccf47cd46 | |
parent | 483ebae5399d6aa7d63e471ea6000021a4be94fb (diff) | |
download | gsoc2013-evolution-9a904c937f8fecd8dd7ead89c1d05008932f6ead.tar gsoc2013-evolution-9a904c937f8fecd8dd7ead89c1d05008932f6ead.tar.gz gsoc2013-evolution-9a904c937f8fecd8dd7ead89c1d05008932f6ead.tar.bz2 gsoc2013-evolution-9a904c937f8fecd8dd7ead89c1d05008932f6ead.tar.lz gsoc2013-evolution-9a904c937f8fecd8dd7ead89c1d05008932f6ead.tar.xz gsoc2013-evolution-9a904c937f8fecd8dd7ead89c1d05008932f6ead.tar.zst gsoc2013-evolution-9a904c937f8fecd8dd7ead89c1d05008932f6ead.zip |
Make the `EShellOfflineHandler' object non-floating in the construct
method.
svn path=/trunk/; revision=9655
-rw-r--r-- | shell/ChangeLog | 5 | ||||
-rw-r--r-- | shell/e-shell-offline-handler.c | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index b765ad249b..cf928b274b 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,8 @@ +2001-05-03 Ettore Perazzoli <ettore@ximian.com> + + * e-shell-offline-handler.c (e_shell_offline_handler_construct): + Unset the `GTK_FLOATING' flag. + 2001-05-02 Ettore Perazzoli <ettore@ximian.com> * e-shell.c: New members `is_offline' and `offline_handler' in diff --git a/shell/e-shell-offline-handler.c b/shell/e-shell-offline-handler.c index 1967041a7e..9b591f5ef2 100644 --- a/shell/e-shell-offline-handler.c +++ b/shell/e-shell-offline-handler.c @@ -578,6 +578,8 @@ e_shell_offline_handler_construct (EShellOfflineHandler *offline_handler, g_assert (priv->component_registry == NULL); + GTK_OBJECT_UNSET_FLAGS (GTK_OBJECT (offline_handler), GTK_FLOATING); + gtk_object_ref (GTK_OBJECT (component_registry)); priv->component_registry = component_registry; } |