[gvfs/gdbus-core] gdbus: Fix case of GDbusAttributeValue struct



commit b7ee35269b12a01666473d675fcca49f94957018
Author: Tomas Bzatek <tbzatek redhat com>
Date:   Tue Jul 24 17:17:11 2012 +0200

    gdbus: Fix case of GDbusAttributeValue struct

 common/gvfsdaemonprotocol.c  |    8 ++++----
 common/gvfsdaemonprotocol.h  |    8 ++++----
 daemon/gvfsjobsetattribute.c |    2 +-
 daemon/gvfsjobsetattribute.h |    2 +-
 4 files changed, 10 insertions(+), 10 deletions(-)
---
diff --git a/common/gvfsdaemonprotocol.c b/common/gvfsdaemonprotocol.c
index 2024463..f2ecc17 100644
--- a/common/gvfsdaemonprotocol.c
+++ b/common/gvfsdaemonprotocol.c
@@ -63,7 +63,7 @@ append_object (GObject *obj)
 
 void
 _g_dbus_attribute_value_destroy (GFileAttributeType          type,
-				 GDbusAttributeValue        *value)
+				 GDBusAttributeValue        *value)
 {
   switch (type) {
   case G_FILE_ATTRIBUTE_TYPE_STRING:
@@ -84,7 +84,7 @@ _g_dbus_attribute_value_destroy (GFileAttributeType          type,
 
 gpointer
 _g_dbus_attribute_as_pointer (GFileAttributeType type,
-			      GDbusAttributeValue *value)
+			      GDBusAttributeValue *value)
 {
   switch (type) {
   case G_FILE_ATTRIBUTE_TYPE_STRING:
@@ -222,7 +222,7 @@ _g_dbus_get_file_attribute (GVariant *value,
 			    gchar **attribute,
 			    GFileAttributeStatus *status,
 			    GFileAttributeType *type,
-			    GDbusAttributeValue *attr_value)
+			    GDBusAttributeValue *attr_value)
 {
   gboolean res;
   char *str;
@@ -335,7 +335,7 @@ _g_dbus_get_file_info (GVariant *value,
   gchar *attribute;
   GFileAttributeType type;
   GFileAttributeStatus status;
-  GDbusAttributeValue attr_value;
+  GDBusAttributeValue attr_value;
   GVariantIter iter;
   GVariant *child;
 
diff --git a/common/gvfsdaemonprotocol.h b/common/gvfsdaemonprotocol.h
index 7b25f14..440620b 100644
--- a/common/gvfsdaemonprotocol.h
+++ b/common/gvfsdaemonprotocol.h
@@ -74,12 +74,12 @@ typedef union {
   guint32 uint32;
   guint64 uint64;
   gpointer ptr;
-} GDbusAttributeValue;
+} GDBusAttributeValue;
 
 void       _g_dbus_attribute_value_destroy       (GFileAttributeType          type,
-						  GDbusAttributeValue        *value);
+						  GDBusAttributeValue        *value);
 gpointer   _g_dbus_attribute_as_pointer          (GFileAttributeType          type,
-						  GDbusAttributeValue        *value);
+						  GDBusAttributeValue        *value);
 GVariant * _g_dbus_append_file_attribute         (const char                 *attribute,
 						  GFileAttributeStatus        status,
 						  GFileAttributeType          type,
@@ -89,7 +89,7 @@ gboolean   _g_dbus_get_file_attribute            (GVariant                   *va
 						  gchar                     **attribute,
 						  GFileAttributeStatus       *status,
 						  GFileAttributeType         *type,
-						  GDbusAttributeValue        *attr_value);
+						  GDBusAttributeValue        *attr_value);
 GFileInfo *_g_dbus_get_file_info                 (GVariant                   *value,
 						  GError                    **error);
 
diff --git a/daemon/gvfsjobsetattribute.c b/daemon/gvfsjobsetattribute.c
index a5e364f..79ce5a8 100644
--- a/daemon/gvfsjobsetattribute.c
+++ b/daemon/gvfsjobsetattribute.c
@@ -86,7 +86,7 @@ g_vfs_job_set_attribute_new_handle (GVfsDBusMount *object,
   GVfsJobSetAttribute *job;
   gchar *attribute;
   GFileAttributeType type;
-  GDbusAttributeValue value;
+  GDBusAttributeValue value;
  
   g_print ("called SetAttribute()\n");
 
diff --git a/daemon/gvfsjobsetattribute.h b/daemon/gvfsjobsetattribute.h
index 17a2336..8e7909d 100644
--- a/daemon/gvfsjobsetattribute.h
+++ b/daemon/gvfsjobsetattribute.h
@@ -49,7 +49,7 @@ struct _GVfsJobSetAttribute
   char *filename;
   char *attribute;
   GFileAttributeType type;
-  GDbusAttributeValue value;
+  GDBusAttributeValue value;
   GFileQueryInfoFlags flags;
 };
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]