Plug in all the folder tree right click menu verbs so bonobo-warnings

2001-06-05  Jason Leach  <jleach@ximian.com>

	* e-shell-view-menu.c: Plug in all the folder tree right click
	menu verbs so bonobo-warnings aren't emitted (even though the
	respective implementation functions are currently unimplemented).
	(command_delete_folder): New function, see above.
	(command_rename_folder): Ditto.
	(command_folder_properties): Ditto.

	* e-shell-folder-commands.c (e_shell_command_delete_folder): New
	function, currently unimplemented.

svn path=/trunk/; revision=10128
This commit is contained in:
Jason Leach
2001-06-06 00:05:53 +00:00
committed by Jacob Leach
parent 70c01c8bb7
commit 9a3c412e4f
4 changed files with 65 additions and 1 deletions

View File

@ -297,6 +297,18 @@ e_shell_command_move_folder (EShell *shell,
gtk_widget_show (folder_selection_dialog);
}
void
e_shell_command_delete_folder (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");
}
void
e_shell_command_rename_folder (EShell *shell,
@ -304,7 +316,8 @@ e_shell_command_rename_folder (EShell *shell,
{
g_return_if_fail (shell != NULL);
g_return_if_fail (E_IS_SHELL (shell));
g_return_if_fail (shell_view != NULL && E_IS_SHELL_VIEW (shell_view));
g_return_if_fail (shell_view != NULL);
g_return_if_fail (E_IS_SHELL_VIEW (shell_view));
g_warning ("To be implemented");
}