Make old_name_locale non-const to placate a compiler warning.

* e-shell-folder-commands.c (e_shell_command_rename_folder): Make
old_name_locale non-const to placate a compiler warning.
(get_corba_null_value): Likewise.

* e-activity-handler.c (report_task_event): `#if 0' out.

svn path=/trunk/; revision=16008
This commit is contained in:
Ettore Perazzoli
2002-03-10 03:16:46 +00:00
parent 1fc604a650
commit 4be61235ce
3 changed files with 12 additions and 1 deletions

View File

@ -1,3 +1,11 @@
2002-03-09 Ettore Perazzoli <ettore@ximian.com>
* e-shell-folder-commands.c (e_shell_command_rename_folder): Make
old_name_locale non-const to placate a compiler warning.
(get_corba_null_value): Likewise.
* e-activity-handler.c (report_task_event): `#if 0' out.
2002-03-09 Ettore Perazzoli <ettore@ximian.com> 2002-03-09 Ettore Perazzoli <ettore@ximian.com>
* e-shell-settings-dialog.c (load_pages): Use ECorbaConfigPages. * e-shell-settings-dialog.c (load_pages): Use ECorbaConfigPages.

View File

@ -98,6 +98,7 @@ lookup_activity (GList *list,
return NULL; return NULL;
} }
#if 0
static const CORBA_any * static const CORBA_any *
get_corba_null_value (void) get_corba_null_value (void)
{ {
@ -125,6 +126,7 @@ report_task_event (ActivityInfo *activity_info,
CORBA_exception_free (&ev); CORBA_exception_free (&ev);
} }
#endif
/* ETaskWidget actions. */ /* ETaskWidget actions. */

View File

@ -524,7 +524,8 @@ e_shell_command_rename_folder (EShell *shell,
EStorageSet *storage_set; EStorageSet *storage_set;
EFolder *folder; EFolder *folder;
RenameCallbackData *callback_data; RenameCallbackData *callback_data;
const char *old_name, *old_name_locale; const char *old_name;
char *old_name_locale;
char *prompt; char *prompt;
char *new_name; char *new_name;
char *old_base_path; char *old_base_path;