aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell-view.c
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2002-03-08 03:23:44 +0800
committerDan Winship <danw@src.gnome.org>2002-03-08 03:23:44 +0800
commit17fd352c3b2ccbc9dcfc9d199e7363fe40cd379f (patch)
tree75ef407a74103389c3b8b3546cf5311c55160de3 /shell/e-shell-view.c
parentd6f174ad5110ce2b86f5a4eb45d658b13735b26d (diff)
downloadgsoc2013-evolution-17fd352c3b2ccbc9dcfc9d199e7363fe40cd379f.tar
gsoc2013-evolution-17fd352c3b2ccbc9dcfc9d199e7363fe40cd379f.tar.gz
gsoc2013-evolution-17fd352c3b2ccbc9dcfc9d199e7363fe40cd379f.tar.bz2
gsoc2013-evolution-17fd352c3b2ccbc9dcfc9d199e7363fe40cd379f.tar.lz
gsoc2013-evolution-17fd352c3b2ccbc9dcfc9d199e7363fe40cd379f.tar.xz
gsoc2013-evolution-17fd352c3b2ccbc9dcfc9d199e7363fe40cd379f.tar.zst
gsoc2013-evolution-17fd352c3b2ccbc9dcfc9d199e7363fe40cd379f.zip
Addendum to previous commit: Remove "storage_selected" vs
"folder_selected" distinction. * evolution-storage-set-view.c (storage_set_view_widget_storage_selected_cb): Removed. * evolution-storage-set-view-listener.c (impl_GNOME_Evolution_StorageSetViewListener_notifyStorageSelected): Removed. (class_init): Remove STORAGE_SELECTED signal. * e-storage-set-view.c (impl_cursor_activated): Always emit FOLDER_SELECTED, never STORAGE_SELECTED. (class_init): Remove STORAGE_SELECTED signal. * e-shell-view.c (storage_selected_cb): Removed. * e-shell-folder-creation-dialog.c (storage_set_view_storage_selected_cb): Removed. * Evolution-StorageSetView.idl (StorageSetViewListener): Remove notifyStorageSelected. svn path=/trunk/; revision=15968
Diffstat (limited to 'shell/e-shell-view.c')
-rw-r--r--shell/e-shell-view.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/shell/e-shell-view.c b/shell/e-shell-view.c
index f822dfc228..cfd3bf6239 100644
--- a/shell/e-shell-view.c
+++ b/shell/e-shell-view.c
@@ -873,23 +873,6 @@ folder_selected_cb (EStorageSetView *storage_set_view,
switch_on_folder_tree_click (shell_view, path);
}
-/* Callback called when a storage in the tree view is clicked. */
-static void
-storage_selected_cb (EStorageSetView *storage_set_view,
- const char *name,
- void *data)
-{
- EShellView *shell_view;
- char *path;
-
- shell_view = E_SHELL_VIEW (data);
-
- path = g_strconcat (G_DIR_SEPARATOR_S, name, NULL);
- switch_on_folder_tree_click (shell_view, path);
-
- g_free (path);
-}
-
/* Callbacks for the folder context menu in the folder bar. */
static void
@@ -1029,8 +1012,6 @@ setup_storage_set_subwindow (EShellView *shell_view)
priv->ui_container);
gtk_signal_connect (GTK_OBJECT (storage_set_view), "folder_selected",
GTK_SIGNAL_FUNC (folder_selected_cb), shell_view);
- gtk_signal_connect (GTK_OBJECT (storage_set_view), "storage_selected",
- GTK_SIGNAL_FUNC (storage_selected_cb), shell_view);
gtk_signal_connect (GTK_OBJECT (storage_set_view), "folder_context_menu_popping_up",
GTK_SIGNAL_FUNC (folder_context_menu_popping_up_cb), shell_view);
gtk_signal_connect (GTK_OBJECT (storage_set_view), "folder_context_menu_popped_down",