summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libupower-glib/up-device.c6
-rw-r--r--libupower-glib/up-wakeups.c6
2 files changed, 12 insertions, 0 deletions
diff --git a/libupower-glib/up-device.c b/libupower-glib/up-device.c
index 918f51a..ce826c6 100644
--- a/libupower-glib/up-device.c
+++ b/libupower-glib/up-device.c
@@ -563,6 +563,10 @@ out:
return ret;
}
+/* FIXME: GValueArray is deprecated in GLib 2.33+, but we need to convert to
+ * GDBus to get rid of it */
+#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
+
/**
* up_device_get_history_sync:
* @device: a #UpDevice instance.
@@ -728,6 +732,8 @@ out:
return array;
}
+#pragma GCC diagnostic error "-Wdeprecated-declarations"
+
/*
* up_device_set_property:
*/
diff --git a/libupower-glib/up-wakeups.c b/libupower-glib/up-wakeups.c
index 2843891..3729ad7 100644
--- a/libupower-glib/up-wakeups.c
+++ b/libupower-glib/up-wakeups.c
@@ -87,6 +87,10 @@ up_wakeups_get_total_sync (UpWakeups *wakeups, GCancellable *cancellable, GError
return total;
}
+/* FIXME: GValueArray is deprecated in GLib 2.33+, but we need to convert to
+ * GDBus to get rid of it */
+#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
+
/**
* up_wakeups_get_data_sync:
* @wakeups: a #UpWakeups instance.
@@ -181,6 +185,8 @@ out:
return array;
}
+#pragma GCC diagnostic error "-Wdeprecated-declarations"
+
/**
* up_wakeups_ensure_properties:
**/