Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions src/Services/Device.vala
Original file line number Diff line number Diff line change
Expand Up @@ -25,18 +25,18 @@ public interface BluetoothIndicator.Services.Device : Object {
public abstract void pair () throws Error;

public abstract string[] UUIDs { owned get; }
public abstract bool blocked { owned get; set; }
public abstract bool connected { owned get; }
public abstract bool legacy_pairing { owned get; }
public abstract bool paired { owned get; }
public abstract bool trusted { owned get; set; }
public abstract int16 RSSI { owned get; }
public abstract bool blocked { get; set; }
public abstract bool connected { get; }
public abstract bool legacy_pairing { get; }
public abstract bool paired { get; }
public abstract bool trusted { get; set; }
public abstract int16 RSSI { get; }
public abstract ObjectPath adapter { owned get; }
public abstract string address { owned get; }
public abstract string alias { owned get; set; }
public abstract string icon { owned get; }
public abstract string modalias { owned get; }
public abstract string name { owned get; }
public abstract uint16 appearance { owned get; }
public abstract uint32 @class { owned get; }
public abstract uint16 appearance { get; }
public abstract uint32 @class { get; }
}
2 changes: 1 addition & 1 deletion src/Services/Session.vala
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public interface BluetoothIndicator.Services.Obex.Session : Object {
public abstract string get_capabilities () throws GLib.Error;
public abstract string source { owned get; }
public abstract string destination { owned get; }
public abstract uchar channel { owned get; }
public abstract uchar channel { get; }
public abstract string target { owned get; }
public abstract string root { owned get; }
}
6 changes: 3 additions & 3 deletions src/Services/Transfer.vala
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ public interface BluetoothIndicator.Services.Obex.Transfer : Object {
public abstract ObjectPath session { owned get; }
public abstract string name { owned get; }
public abstract string Type { owned get; }
public abstract uint64 time { owned get; }
public abstract uint64 size { owned get; }
public abstract uint64 transferred { owned get; }
public abstract uint64 time { get; }
public abstract uint64 size { get; }
public abstract uint64 transferred { get; }
public abstract string filename { owned get; }
}
Loading