summaryrefslogtreecommitdiffstats
path: root/input/device.c
diff options
context:
space:
mode:
Diffstat (limited to 'input/device.c')
-rw-r--r--input/device.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/input/device.c b/input/device.c
index 90b4b9ad..dd5ac823 100644
--- a/input/device.c
+++ b/input/device.c
@@ -1017,14 +1017,15 @@ static GDBusMethodTable device_methods[] = {
{ "Connect", "", "", device_connect,
G_DBUS_METHOD_FLAG_ASYNC },
{ "Disconnect", "", "", device_disconnect },
- { "IsConnected", "", "b", device_is_connected },
+ { "IsConnected", "", "b", device_is_connected,
+ G_DBUS_METHOD_FLAG_DEPRECATED },
{ "GetProperties", "", "a{sv}",device_get_properties },
{ }
};
static GDBusSignalTable device_signals[] = {
- { "Connected", "" },
- { "Disconnected", "" },
+ { "Connected", "", G_DBUS_SIGNAL_FLAG_DEPRECATED},
+ { "Disconnected", "", G_DBUS_SIGNAL_FLAG_DEPRECATED},
{ "PropertyChanged", "sv" },
{ }
};