diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2000-07-08 02:12:22 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2000-07-08 02:12:22 +0800 |
commit | 7eaa10884a75068e6e6032455363f57f79718f00 (patch) | |
tree | fb470ecc5f3e626bbf34be249e89ada7e3bc1ede | |
parent | c2afd80bd66b56db0e6a76f4289a76434a53d445 (diff) | |
download | gsoc2013-evolution-7eaa10884a75068e6e6032455363f57f79718f00.tar gsoc2013-evolution-7eaa10884a75068e6e6032455363f57f79718f00.tar.gz gsoc2013-evolution-7eaa10884a75068e6e6032455363f57f79718f00.tar.bz2 gsoc2013-evolution-7eaa10884a75068e6e6032455363f57f79718f00.tar.lz gsoc2013-evolution-7eaa10884a75068e6e6032455363f57f79718f00.tar.xz gsoc2013-evolution-7eaa10884a75068e6e6032455363f57f79718f00.tar.zst gsoc2013-evolution-7eaa10884a75068e6e6032455363f57f79718f00.zip |
Add proper cast when filling in the CORBA sequence struct.
svn path=/trunk/; revision=3952
-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, |