diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2001-02-27 11:58:25 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2001-02-27 11:58:25 +0800 |
commit | a75e12466d16f6c17d558de205bd0991485101cc (patch) | |
tree | 5b26cdf613586f1e1f6892955264864ebef52c2e /shell/evolution-shell-client.c | |
parent | 6d372364756b98ec1bd22810c3b9bf7a9a514c71 (diff) | |
download | gsoc2013-evolution-a75e12466d16f6c17d558de205bd0991485101cc.tar.gz gsoc2013-evolution-a75e12466d16f6c17d558de205bd0991485101cc.tar.zst gsoc2013-evolution-a75e12466d16f6c17d558de205bd0991485101cc.zip |
Added `accepted_dnd_mime_types' and `exported_dnd_mime_types' members
to the `FolderType' struct and renamed `Evolution::Shell::FolderTypeList'
to `Evolution::Shell::FolderTypeNameList' to avoid confusion.
svn path=/trunk/; revision=8400
Diffstat (limited to 'shell/evolution-shell-client.c')
-rw-r--r-- | shell/evolution-shell-client.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/shell/evolution-shell-client.c b/shell/evolution-shell-client.c index 377f2c21d0..fb919b0a3f 100644 --- a/shell/evolution-shell-client.c +++ b/shell/evolution-shell-client.c @@ -170,7 +170,7 @@ user_select_folder (EvolutionShellClient *shell_client, GNOME_Evolution_FolderSelectionListener listener_interface; GNOME_Evolution_Shell corba_shell; CORBA_Environment ev; - GNOME_Evolution_Shell_FolderTypeList corba_type_list; + GNOME_Evolution_Shell_FolderTypeNameList corba_type_name_list; int num_possible_types; char *result; @@ -192,12 +192,12 @@ user_select_folder (EvolutionShellClient *shell_client, num_possible_types = count_string_items (possible_types); - corba_type_list._length = num_possible_types; - corba_type_list._maximum = num_possible_types; - corba_type_list._buffer = (CORBA_char **) possible_types; + corba_type_name_list._length = num_possible_types; + corba_type_name_list._maximum = num_possible_types; + corba_type_name_list._buffer = (CORBA_char **) possible_types; GNOME_Evolution_Shell_selectUserFolder (corba_shell, listener_interface, - title, default_folder, &corba_type_list, + title, default_folder, &corba_type_name_list, &ev); if (ev._major != CORBA_NO_EXCEPTION) { |