diff options
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ChangeLog | 15 | ||||
-rw-r--r-- | shell/e-shell-folder-commands.c | 13 | ||||
-rw-r--r-- | shell/e-shell-folder-commands.h | 2 | ||||
-rw-r--r-- | shell/e-shell-view-menu.c | 13 |
4 files changed, 15 insertions, 28 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index d373b3bfa7..123cfd0795 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,18 @@ +2001-07-05 Ettore Perazzoli <ettore@ximian.com> + + * e-shell-view-menu.c: Removed handler for verb + "ChangeFolderProperties". + (command_folder_properties): Removed. + + * e-shell-folder-commands.c (e_shell_command_folder_properties): + Removed. + +2001-07-03 Ettore Perazzoli <ettore@ximian.com> + + * main.c (development_warning): Use both `VERSION' and + `SUB_VERSION' here. + (main): Likewise. + 2001-07-04 Gediminas Paulauskas <menesis@delfi.lt> * evolution-shell-component-utils.c (e_pixmaps_update): set diff --git a/shell/e-shell-folder-commands.c b/shell/e-shell-folder-commands.c index ba8f645c16..d4670b7c29 100644 --- a/shell/e-shell-folder-commands.c +++ b/shell/e-shell-folder-commands.c @@ -433,16 +433,3 @@ e_shell_command_add_to_shortcut_bar (EShell *shell, e_shortcuts_add_shortcut (shortcuts, group_num, -1, uri, NULL, NULL); } - - -void -e_shell_command_folder_properties (EShell *shell, - EShellView *shell_view) -{ - g_return_if_fail (shell != NULL); - g_return_if_fail (E_IS_SHELL (shell)); - g_return_if_fail (shell_view != NULL); - g_return_if_fail (E_IS_SHELL_VIEW (shell_view)); - - g_warning ("To be implemented"); -} diff --git a/shell/e-shell-folder-commands.h b/shell/e-shell-folder-commands.h index 95585f1d43..2a3f61d863 100644 --- a/shell/e-shell-folder-commands.h +++ b/shell/e-shell-folder-commands.h @@ -38,6 +38,4 @@ void e_shell_command_rename_folder (EShell *shell, EShellView *shell_ void e_shell_command_add_to_shortcut_bar (EShell *shell, EShellView *shell_view); -void e_shell_command_folder_properties (EShell *shell, EShellView *shell_view); - #endif diff --git a/shell/e-shell-view-menu.c b/shell/e-shell-view-menu.c index 7e5bef44b1..1cffd57a6c 100644 --- a/shell/e-shell-view-menu.c +++ b/shell/e-shell-view-menu.c @@ -407,17 +407,6 @@ command_add_folder_to_shortcut_bar (BonoboUIComponent *uih, e_shell_command_add_to_shortcut_bar (e_shell_view_get_shell (shell_view), shell_view); } -static void -command_folder_properties (BonoboUIComponent *uih, - void *data, - const char *path) -{ - EShellView *shell_view; - - shell_view = E_SHELL_VIEW (data); - e_shell_command_folder_properties (e_shell_view_get_shell (shell_view), shell_view); -} - /* Going to a folder. */ @@ -660,8 +649,6 @@ BonoboUIVerb folder_verbs [] = { BONOBO_UI_VERB ("AddFolderToShortcutBar", command_add_folder_to_shortcut_bar), - BONOBO_UI_VERB ("ChangeFolderProperties", command_folder_properties), - BONOBO_UI_VERB_END }; |