summaryrefslogtreecommitdiff
path: root/telepathy-glib/debug-client.c
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2012-05-02 19:06:24 +0100
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2012-05-02 20:19:36 +0100
commit9aec808ae99f5b06c816943fc1648358af0d8294 (patch)
treeac7f5cd918ca45932fd321648e9f589d35e966c2 /telepathy-glib/debug-client.c
parent2cc2520bcfa36c834dab111ebf41637bbfc8371f (diff)
downloadtelepathy-glib-9aec808ae99f5b06c816943fc1648358af0d8294.tar.gz
Stop using TP_ERRORS
We deprecated this in 0.11.
Diffstat (limited to 'telepathy-glib/debug-client.c')
-rw-r--r--telepathy-glib/debug-client.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/telepathy-glib/debug-client.c b/telepathy-glib/debug-client.c
index 8418feef1..a16da379d 100644
--- a/telepathy-glib/debug-client.c
+++ b/telepathy-glib/debug-client.c
@@ -275,7 +275,7 @@ got_enabled_cb (
}
else if (!G_VALUE_HOLDS_BOOLEAN (value))
{
- GError *e = g_error_new (TP_ERRORS,
+ GError *e = g_error_new (TP_ERROR,
TP_ERROR_NOT_IMPLEMENTED,
"this service doesn't implement the Debug interface correctly "
"(the Enabled property is not a boolean, but a %s)",
@@ -343,7 +343,7 @@ tp_debug_client_init_known_interfaces (void)
tp_proxy_or_subclass_hook_on_interface_add (tp_type,
tp_cli_debug_add_signals);
tp_proxy_subclass_add_error_mapping (tp_type,
- TP_ERROR_PREFIX, TP_ERRORS, TP_TYPE_ERROR);
+ TP_ERROR_PREFIX, TP_ERROR, TP_TYPE_ERROR);
g_once_init_leave (&once, 1);
}