diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2001-03-21 16:02:28 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2001-03-21 16:02:28 +0800 |
commit | c0174ecb4e5427bed34ce57047e38fbc66ee477d (patch) | |
tree | 3bed960d7c97a7171f46c5a2265b44460312c8cd /shell/e-storage-set-view.c | |
parent | 3c927d0702eefef2cf02baf917e1366f49f17947 (diff) | |
download | gsoc2013-evolution-c0174ecb4e5427bed34ce57047e38fbc66ee477d.tar.gz gsoc2013-evolution-c0174ecb4e5427bed34ce57047e38fbc66ee477d.tar.zst gsoc2013-evolution-c0174ecb4e5427bed34ce57047e38fbc66ee477d.zip |
StudlyCapsify struct members to match the new IDL naming standards.
svn path=/trunk/; revision=8862
Diffstat (limited to 'shell/e-storage-set-view.c')
-rw-r--r-- | shell/e-storage-set-view.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/shell/e-storage-set-view.c b/shell/e-storage-set-view.c index f99c27647b..1b31e018f0 100644 --- a/shell/e-storage-set-view.c +++ b/shell/e-storage-set-view.c @@ -860,10 +860,10 @@ tree_drag_begin (ETree *etree, CORBA_free (priv->drag_corba_source_context); priv->drag_corba_source_context = GNOME_Evolution_ShellComponentDnd_SourceFolder_Context__alloc (); - priv->drag_corba_source_context->physical_uri = CORBA_string_dup (e_folder_get_physical_uri (folder)); - priv->drag_corba_source_context->folder_type = CORBA_string_dup (e_folder_get_type_string (folder)); - priv->drag_corba_source_context->possible_actions = possible_actions; - priv->drag_corba_source_context->suggested_action = suggested_action; + priv->drag_corba_source_context->physicalUri = CORBA_string_dup (e_folder_get_physical_uri (folder)); + priv->drag_corba_source_context->folderType = CORBA_string_dup (e_folder_get_type_string (folder)); + priv->drag_corba_source_context->possibleActions = possible_actions; + priv->drag_corba_source_context->suggestedAction = suggested_action; } static void @@ -1016,9 +1016,9 @@ tree_drag_motion (ETree *tree, CORBA_exception_init (&ev); - corba_context.dnd_type = (char *) dnd_type; /* (Safe cast, as we don't actually free the corba_context.) */ - corba_context.possible_actions = convert_gdk_drag_action_to_corba (context->actions); - corba_context.suggested_action = convert_gdk_drag_action_to_corba (context->suggested_action); + corba_context.dndType = (char *) dnd_type; /* (Safe cast, as we don't actually free the corba_context.) */ + corba_context.possibleActions = convert_gdk_drag_action_to_corba (context->actions); + corba_context.suggestedAction = convert_gdk_drag_action_to_corba (context->suggested_action); can_handle = GNOME_Evolution_ShellComponentDnd_DestinationFolder_handleMotion (destination_folder_interface, &corba_context, |