aboutsummaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2001-07-05 19:19:19 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2001-07-05 19:19:19 +0800
commitd02ed3c293e6772217710df95bc2d9bde14bf792 (patch)
treece3bbc2470398dfda4e1a91d3ccae70ef2824b20 /shell
parentf6e8b09c24ded7d024dca4563bd4789e0b3c4b05 (diff)
downloadgsoc2013-evolution-d02ed3c293e6772217710df95bc2d9bde14bf792.tar
gsoc2013-evolution-d02ed3c293e6772217710df95bc2d9bde14bf792.tar.gz
gsoc2013-evolution-d02ed3c293e6772217710df95bc2d9bde14bf792.tar.bz2
gsoc2013-evolution-d02ed3c293e6772217710df95bc2d9bde14bf792.tar.lz
gsoc2013-evolution-d02ed3c293e6772217710df95bc2d9bde14bf792.tar.xz
gsoc2013-evolution-d02ed3c293e6772217710df95bc2d9bde14bf792.tar.zst
gsoc2013-evolution-d02ed3c293e6772217710df95bc2d9bde14bf792.zip
Get the File -> Folder -> Properties menu item work again for the
mailer. svn path=/trunk/; revision=10793
Diffstat (limited to 'shell')
-rw-r--r--shell/ChangeLog15
-rw-r--r--shell/e-shell-folder-commands.c13
-rw-r--r--shell/e-shell-folder-commands.h2
-rw-r--r--shell/e-shell-view-menu.c13
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
};