diff options
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ChangeLog | 5 | ||||
-rw-r--r-- | shell/evolution-shell-component.c | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index cbc4edf146..b006f6ba7d 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,8 @@ +2001-08-19 Chris Toshok <toshok@ximian.com> + + * evolution-shell-component.c (impl__get_supported_types): fill + the corba sequence for the accepted_dnd_types. + 2001-08-20 Ettore Perazzoli <ettore@ximian.com> * e-shell-view.c (setup_storage_set_subwindow): Don't show the diff --git a/shell/evolution-shell-component.c b/shell/evolution-shell-component.c index eedbb98695..5e586a2c08 100644 --- a/shell/evolution-shell-component.c +++ b/shell/evolution-shell-component.c @@ -202,6 +202,8 @@ impl__get_supported_types (PortableServer_Servant servant, corba_folder_type->description = CORBA_string_dup (folder_type->description); corba_folder_type->user_creatable = folder_type->user_creatable; + fill_corba_sequence_from_null_terminated_string_array (& corba_folder_type->accepted_dnd_types, + folder_type->accepted_dnd_types); fill_corba_sequence_from_null_terminated_string_array (& corba_folder_type->exported_dnd_types, folder_type->exported_dnd_types); } |