summaryrefslogtreecommitdiff
path: root/libupower-glib
diff options
context:
space:
mode:
authorBastien Nocera <hadess@hadess.net>2021-08-19 18:51:30 +0200
committerBastien Nocera <hadess@hadess.net>2021-08-19 18:57:30 +0200
commit4e962fdc8d26a8b98bbd75fbca16d872d935eff2 (patch)
treeff4a1e619e6f8ca2831ab2f13c3b696b5c5735d3 /libupower-glib
parent0f6cc0a10be22d7ddd684e1cd851e4364a440494 (diff)
lib: Mark lid related functions and properties as deprecated
As we want to eventually remove them. See https://gitlab.freedesktop.org/upower/upower/-/merge_requests/5
Diffstat (limited to 'libupower-glib')
-rw-r--r--libupower-glib/up-client.c4
-rw-r--r--libupower-glib/up-client.h2
2 files changed, 4 insertions, 2 deletions
diff --git a/libupower-glib/up-client.c b/libupower-glib/up-client.c
index 723ab75..447efb7 100644
--- a/libupower-glib/up-client.c
+++ b/libupower-glib/up-client.c
@@ -404,7 +404,7 @@ up_client_class_init (UpClientClass *klass)
"If the laptop lid is closed",
NULL,
FALSE,
- G_PARAM_READABLE));
+ G_PARAM_READABLE | G_PARAM_DEPRECATED));
/**
* UpClient:lid-is-present:
*
@@ -418,7 +418,7 @@ up_client_class_init (UpClientClass *klass)
"If a laptop lid is present",
NULL,
FALSE,
- G_PARAM_READABLE));
+ G_PARAM_READABLE | G_PARAM_DEPRECATED));
/**
* UpClient::device-added:
diff --git a/libupower-glib/up-client.h b/libupower-glib/up-client.h
index 0180dd4..5ce31c3 100644
--- a/libupower-glib/up-client.h
+++ b/libupower-glib/up-client.h
@@ -82,7 +82,9 @@ char * up_client_get_critical_action (UpClient *client);
GPtrArray *up_client_get_devices (UpClient *client) G_DEPRECATED_FOR(up_client_get_devices2);
GPtrArray *up_client_get_devices2 (UpClient *client);
const gchar *up_client_get_daemon_version (UpClient *client);
+G_DEPRECATED
gboolean up_client_get_lid_is_closed (UpClient *client);
+G_DEPRECATED
gboolean up_client_get_lid_is_present (UpClient *client);
gboolean up_client_get_on_battery (UpClient *client);