diff options
author | Dan Winship <danw@src.gnome.org> | 2002-03-09 06:34:19 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2002-03-09 06:34:19 +0800 |
commit | a9b3a1b2e284d895d1de7dae6cf6ea18d3660cee (patch) | |
tree | fe58392fb821619c851c660470aa5bc9599dc3e7 /shell/e-shell-view.c | |
parent | 26ff49a096875730646bf709cbdb807857006cfc (diff) | |
download | gsoc2013-evolution-a9b3a1b2e284d895d1de7dae6cf6ea18d3660cee.tar.gz gsoc2013-evolution-a9b3a1b2e284d895d1de7dae6cf6ea18d3660cee.tar.zst gsoc2013-evolution-a9b3a1b2e284d895d1de7dae6cf6ea18d3660cee.zip |
Note that e_storage_set_view_new shouldn't be used directly.
* e-storage-set-view.[ch]: Note that e_storage_set_view_new
shouldn't be used directly.
* e-shell-view.c (setup_storage_set_subwindow): Use
e_storage_set_new_view instead of e_storage_set_view_new.
* evolution-storage-set-view-factory.c
(evolution_storage_set_view_factory_new_view): Likewise.
svn path=/trunk/; revision=15993
Diffstat (limited to 'shell/e-shell-view.c')
-rw-r--r-- | shell/e-shell-view.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/e-shell-view.c b/shell/e-shell-view.c index cfd3bf6239..c7e68613eb 100644 --- a/shell/e-shell-view.c +++ b/shell/e-shell-view.c @@ -1008,7 +1008,7 @@ setup_storage_set_subwindow (EShellView *shell_view) priv = shell_view->priv; - storage_set_view = e_storage_set_view_new (e_shell_get_storage_set (priv->shell), + storage_set_view = e_storage_set_new_view (e_shell_get_storage_set (priv->shell), priv->ui_container); gtk_signal_connect (GTK_OBJECT (storage_set_view), "folder_selected", GTK_SIGNAL_FUNC (folder_selected_cb), shell_view); |