summaryrefslogtreecommitdiff
path: root/telepathy-glib/util.h
diff options
context:
space:
mode:
authorXavier Claessens <xavier.claessens@collabora.co.uk>2012-10-10 14:15:01 +0200
committerXavier Claessens <xavier.claessens@collabora.co.uk>2012-10-10 14:58:10 +0200
commite83233400f60acaac9838966b504801f00206132 (patch)
treec33ac301b2aff216d596863c31feee3e34bc367e /telepathy-glib/util.h
parentacd25c4ddc583f4fbfe127c3dae2f3d5a1e58b03 (diff)
downloadtelepathy-glib-e83233400f60acaac9838966b504801f00206132.tar.gz
Deprecate tp_g_key_file_get_(u)int64, GLib has it since 2.26
Diffstat (limited to 'telepathy-glib/util.h')
-rw-r--r--telepathy-glib/util.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/telepathy-glib/util.h b/telepathy-glib/util.h
index 3dcf35c7f..50e794da1 100644
--- a/telepathy-glib/util.h
+++ b/telepathy-glib/util.h
@@ -91,10 +91,14 @@ gchar *tp_escape_as_identifier (const gchar *name) G_GNUC_WARN_UNUSED_RESULT;
gboolean tp_strv_contains (const gchar * const *strv, const gchar *str);
+#ifndef TP_DISABLE_DEPRECATED
+_TP_DEPRECATED_IN_UNRELEASED_FOR(g_key_file_get_int64)
gint64 tp_g_key_file_get_int64 (GKeyFile *key_file, const gchar *group_name,
const gchar *key, GError **error);
+_TP_DEPRECATED_IN_UNRELEASED_FOR(g_key_file_get_uint64)
guint64 tp_g_key_file_get_uint64 (GKeyFile *key_file, const gchar *group_name,
const gchar *key, GError **error);
+#endif
gulong tp_g_signal_connect_object (gpointer instance,
const gchar *detailed_signal, GCallback c_handler, gpointer gobject,