diff options
-rw-r--r-- | shell/ChangeLog | 5 | ||||
-rw-r--r-- | shell/evolution-shell-client.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 8653729d40..0c09360542 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,5 +1,10 @@ 2000-07-07 Ettore Perazzoli <ettore@helixcode.com> + * evolution-shell-client.c (user_select_folder): Fix small warning + by adding proper cast when filling in the CORBA sequence struct. + +2000-07-07 Ettore Perazzoli <ettore@helixcode.com> + * e-shell.c (setup_corba_storages): Ref the CORBA storage registry. diff --git a/shell/evolution-shell-client.c b/shell/evolution-shell-client.c index 5d48111c01..86f8b852ce 100644 --- a/shell/evolution-shell-client.c +++ b/shell/evolution-shell-client.c @@ -196,7 +196,7 @@ user_select_folder (EvolutionShellClient *shell_client, corba_type_list._length = num_possible_types; corba_type_list._maximum = num_possible_types; - corba_type_list._buffer = possible_types; + corba_type_list._buffer = (CORBA_char **) possible_types; Evolution_Shell_user_select_folder (corba_shell, listener_interface, title, default_folder, &corba_type_list, |