summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRico Tzschichholz <ricotz@ubuntu.com>2023-03-21 12:29:23 +0100
committerRico Tzschichholz <ricotz@ubuntu.com>2023-03-21 12:29:23 +0100
commit977eca5f8edfff92772072c6d3abef8357cd7753 (patch)
treefceeb0f6e1b89a694cc1032ab6cd7973299bcbba
parenta1954fcab6f86754ba355af6bff74c568a246245 (diff)
downloadfolks-977eca5f8edfff92772072c6d3abef8357cd7753.tar.gz
bluez: Fix invalid ownership of property accessors in Device interface
-rw-r--r--backends/bluez/org-bluez.vala16
1 files changed, 8 insertions, 8 deletions
diff --git a/backends/bluez/org-bluez.vala b/backends/bluez/org-bluez.vala
index 5def9ad2..c1e0cae8 100644
--- a/backends/bluez/org-bluez.vala
+++ b/backends/bluez/org-bluez.vala
@@ -82,25 +82,25 @@ namespace org
public abstract string icon { owned get; }
[DBus (name = "Class")]
- public abstract uint32 bluetooth_class { owned get; }
+ public abstract uint32 bluetooth_class { get; }
[DBus (name = "Appearance")]
- public abstract uint16 appearance { owned get; }
+ public abstract uint16 appearance { get; }
[DBus (name = "UUIDs")]
public abstract string[] uuids { owned get; }
[DBus (name = "Paired")]
- public abstract bool paired { owned get; }
+ public abstract bool paired { get; }
[DBus (name = "Connected")]
- public abstract bool connected { owned get; }
+ public abstract bool connected { get; }
[DBus (name = "Trusted")]
- public abstract bool trusted { owned get; set; }
+ public abstract bool trusted { get; set; }
[DBus (name = "Blocked")]
- public abstract bool blocked { owned get; set; }
+ public abstract bool blocked { get; set; }
[DBus (name = "Alias")]
public abstract string alias { owned get; set; }
@@ -109,13 +109,13 @@ namespace org
public abstract ObjectPath adapter { owned get; }
[DBus (name = "LegacyPairing")]
- public abstract bool legacy_pairing { owned get; }
+ public abstract bool legacy_pairing { get; }
[DBus (name = "Modalias")]
public abstract string mod_alias { owned get; }
[DBus (name = "RSSI")]
- public abstract int16 rssi { owned get; }
+ public abstract int16 rssi { get; }
}
}
}