aboutsummaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
Diffstat (limited to 'shell')
-rw-r--r--shell/ChangeLog8
-rw-r--r--shell/evolution-storage-set-view-factory.c3
2 files changed, 10 insertions, 1 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index 059b0d168c..72040df21b 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,3 +1,11 @@
+2000-10-02 Chris Toshok <toshok@helixcode.com>
+
+ * evolution-storage-set-view-factory.c
+ (evolution_storage_set_view_factory_new_view): pass
+ storage_set_view_interface as second argument to
+ bonobo_object_add_interface, and call gtk_widget_show on the
+ storage_set_view widget.
+
2000-10-03 Michael Meeks <michael@helixcode.com>
* e-shell-view.c (setup_bonobo_ui_handler): kill.
diff --git a/shell/evolution-storage-set-view-factory.c b/shell/evolution-storage-set-view-factory.c
index 79145d6492..9528cf729f 100644
--- a/shell/evolution-storage-set-view-factory.c
+++ b/shell/evolution-storage-set-view-factory.c
@@ -45,6 +45,7 @@ evolution_storage_set_view_factory_new_view (EShell *shell)
storage_set = e_shell_get_storage_set (shell);
storage_set_view = e_storage_set_view_new (storage_set);
+ gtk_widget_show (storage_set_view);
storage_set_view_interface = evolution_storage_set_view_new (storage_set_view);
if (storage_set_view_interface == NULL) {
@@ -53,7 +54,7 @@ evolution_storage_set_view_factory_new_view (EShell *shell)
}
control = bonobo_control_new (storage_set_view);
- bonobo_object_add_interface (BONOBO_OBJECT (control), BONOBO_OBJECT (storage_set_view));
+ bonobo_object_add_interface (BONOBO_OBJECT (control), BONOBO_OBJECT (storage_set_view_interface));
return control;
}