aboutsummaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorChris Toshok <toshok@helixcode.com>2000-10-03 07:57:41 +0800
committerChris Toshok <toshok@src.gnome.org>2000-10-03 07:57:41 +0800
commit29b9fbe51b2fd15b76617956a5517cb953f1ca29 (patch)
tree7e66170499dfc7b3f67c52bfebcba12a74c9d0c2 /shell
parentf5394d001ea69f0d6a5660c6744580275ebbf9c3 (diff)
downloadgsoc2013-evolution-29b9fbe51b2fd15b76617956a5517cb953f1ca29.tar
gsoc2013-evolution-29b9fbe51b2fd15b76617956a5517cb953f1ca29.tar.gz
gsoc2013-evolution-29b9fbe51b2fd15b76617956a5517cb953f1ca29.tar.bz2
gsoc2013-evolution-29b9fbe51b2fd15b76617956a5517cb953f1ca29.tar.lz
gsoc2013-evolution-29b9fbe51b2fd15b76617956a5517cb953f1ca29.tar.xz
gsoc2013-evolution-29b9fbe51b2fd15b76617956a5517cb953f1ca29.tar.zst
gsoc2013-evolution-29b9fbe51b2fd15b76617956a5517cb953f1ca29.zip
pass storage_set_view_interface as second argument to
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. svn path=/trunk/; revision=5680
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;
}