Don't include the storage name in the path passed to

* e-storage-set-view.c (folder_property_item_verb_callback): Don't
	include the storage name in the path passed to
	e_corba_storage_show_folder_properties, for consistency with the
	other EStorage methods.

svn path=/trunk/; revision=17716
This commit is contained in:
Dan Winship
2002-08-06 20:25:10 +00:00
parent 56aa60771f
commit eb83dd4dd0
2 changed files with 12 additions and 3 deletions

View File

@ -1,3 +1,10 @@
2002-08-06 Dan Winship <danw@ximian.com>
* e-storage-set-view.c (folder_property_item_verb_callback): Don't
include the storage name in the path passed to
e_corba_storage_show_folder_properties, for consistency with the
other EStorage methods.
2002-08-06 Ettore Perazzoli <ettore@ximian.com>
* evolution-test-component.c

View File

@ -619,7 +619,7 @@ folder_property_item_verb_callback (BonoboUIComponent *component,
{
FolderPropertyItemsData *data;
GtkWidget *toplevel_widget;
const char *p;
const char *p, *path;
int item_number;
data = (FolderPropertyItemsData *) user_data;
@ -632,8 +632,10 @@ folder_property_item_verb_callback (BonoboUIComponent *component,
toplevel_widget = gtk_widget_get_toplevel (GTK_WIDGET (data->storage_set_view));
e_corba_storage_show_folder_properties (data->corba_storage,
data->storage_set_view->priv->right_click_row_path,
path = strchr (data->storage_set_view->priv->right_click_row_path + 1, E_PATH_SEPARATOR);
if (path == NULL)
path = "/";
e_corba_storage_show_folder_properties (data->corba_storage, path,
item_number, toplevel_widget->window);
}