[folks] bluez: Fix [DBus] attribute capitalisation in OBEX interface



commit 6d9068cf8797683314a8f8dfd687c532220dbb5d
Author: Philip Withnall <philip withnall collabora co uk>
Date:   Mon Apr 27 16:57:21 2015 +0100

    bluez: Fix [DBus] attribute capitalisation in OBEX interface
    
    This fixes a number of compiler warnings.

 backends/bluez/org-bluez-obex-client.vala |   18 +++++++++---------
 1 files changed, 9 insertions(+), 9 deletions(-)
---
diff --git a/backends/bluez/org-bluez-obex-client.vala b/backends/bluez/org-bluez-obex-client.vala
index b22f21f..1b0f517 100644
--- a/backends/bluez/org-bluez-obex-client.vala
+++ b/backends/bluez/org-bluez-obex-client.vala
@@ -75,23 +75,23 @@ namespace org
             [DBus (name = "org.bluez.obex.Transfer1")]
             public interface Transfer : Object
               {
-                [Dbus (name = "Cancel")]
+                [DBus (name = "Cancel")]
                 public abstract void cancel () throws DBusError;
-                [Dbus (name = "Status")]
+                [DBus (name = "Status")]
                 public abstract string status { owned get; }
-                [Dbus (name = "Session")]
+                [DBus (name = "Session")]
                 public abstract ObjectPath session { owned get; }
-                [Dbus (name = "Name")]
+                [DBus (name = "Name")]
                 public abstract string name { owned get; }
-                [Dbus (name = "Type")]
+                [DBus (name = "Type")]
                 public abstract string transfer_type { owned get; }
-                [Dbus (name = "Time")]
+                [DBus (name = "Time")]
                 public abstract int64 time { get; }
-                [Dbus (name = "Size")]
+                [DBus (name = "Size")]
                 public abstract uint64 size { get; }
-                [Dbus (name = "Transferred")]
+                [DBus (name = "Transferred")]
                 public abstract uint64 transferred { get; }
-                [Dbus (name = "Filename")]
+                [DBus (name = "Filename")]
                 public abstract string filename { owned get; }
               }
           }


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