Placate compiler.

* e-shell-view-menu.c (launch_pilot_settings): Placate compiler.

* e-shell-folder-commands.c (xfer_result_callback): When
FOLDER_COMMAND_MOVE, update the shortcuts by using
e_shortcuts_update_shortcuts_for_changed_uri().

* e-shortcuts.c (e_shortcuts_update_shortcuts_for_changed_uri):
New.

svn path=/trunk/; revision=18206
This commit is contained in:
Ettore Perazzoli
2002-09-24 21:01:04 +00:00
parent ab7d63ce8e
commit efa2ba8ab0
5 changed files with 69 additions and 1 deletions

View File

@ -149,6 +149,21 @@ xfer_result_callback (EStorageSet *storage_set,
g_free (msg);
}
if (folder_command_data->command == FOLDER_COMMAND_MOVE) {
char *source_uri;
char *destination_uri;
source_uri = g_strconcat (E_SHELL_URI_PREFIX, folder_command_data->source_path, NULL);
destination_uri = g_strconcat (E_SHELL_URI_PREFIX, folder_command_data->destination_path, NULL);
e_shortcuts_update_shortcuts_for_changed_uri
(e_shell_get_shortcuts (folder_command_data->shell),
source_uri, destination_uri);
g_free (source_uri);
g_free (destination_uri);
}
folder_command_data_free (folder_command_data);
}