aboutsummaryrefslogtreecommitdiffstats
path: root/src/empathy-event-manager.c
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2012-05-07 17:10:17 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2012-05-07 17:10:17 +0800
commitd0193ecc58b6eab69b4c4d3c9667c50bfc033b49 (patch)
tree7de875e06499adace751f64d27b16d614a009f84 /src/empathy-event-manager.c
parent9923159863e58051f64cc7a60b3fa16184526db8 (diff)
downloadgsoc2013-empathy-d0193ecc58b6eab69b4c4d3c9667c50bfc033b49.tar
gsoc2013-empathy-d0193ecc58b6eab69b4c4d3c9667c50bfc033b49.tar.gz
gsoc2013-empathy-d0193ecc58b6eab69b4c4d3c9667c50bfc033b49.tar.bz2
gsoc2013-empathy-d0193ecc58b6eab69b4c4d3c9667c50bfc033b49.tar.lz
gsoc2013-empathy-d0193ecc58b6eab69b4c4d3c9667c50bfc033b49.tar.xz
gsoc2013-empathy-d0193ecc58b6eab69b4c4d3c9667c50bfc033b49.tar.zst
gsoc2013-empathy-d0193ecc58b6eab69b4c4d3c9667c50bfc033b49.zip
Use TP_ERROR instead of TP_ERRORS
The latter has been deprecated in tp-glib master.
Diffstat (limited to 'src/empathy-event-manager.c')
-rw-r--r--src/empathy-event-manager.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/empathy-event-manager.c b/src/empathy-event-manager.c
index b3465cea1..935941de3 100644
--- a/src/empathy-event-manager.c
+++ b/src/empathy-event-manager.c
@@ -293,7 +293,7 @@ handle_with_time_cb (GObject *source,
if (!tp_channel_dispatch_operation_handle_with_time_finish (cdo, result,
&error))
{
- if (g_error_matches (error, TP_ERRORS, TP_ERROR_NOT_IMPLEMENTED))
+ if (g_error_matches (error, TP_ERROR, TP_ERROR_NOT_IMPLEMENTED))
{
EventManagerApproval *approval = user_data;
@@ -931,7 +931,7 @@ approve_channels (TpSimpleApprover *approver,
channel = find_main_channel (channels);
if (channel == NULL)
{
- GError error = { TP_ERRORS, TP_ERROR_INVALID_ARGUMENT,
+ GError error = { TP_ERROR, TP_ERROR_INVALID_ARGUMENT,
"Unknown channel type" };
DEBUG ("Failed to find the main channel; ignoring");
@@ -1041,7 +1041,7 @@ approve_channels (TpSimpleApprover *approver,
}
else
{
- GError error = { TP_ERRORS, TP_ERROR_NOT_IMPLEMENTED,
+ GError error = { TP_ERROR, TP_ERROR_NOT_IMPLEMENTED,
"Support only X-TELEPATHY-PASSWORD auth method" };
tp_add_dispatch_operation_context_fail (context, &error);
@@ -1050,7 +1050,7 @@ approve_channels (TpSimpleApprover *approver,
}
else
{
- GError error = { TP_ERRORS, TP_ERROR_INVALID_ARGUMENT,
+ GError error = { TP_ERROR, TP_ERROR_INVALID_ARGUMENT,
"Invalid channel type" };
DEBUG ("Unknown channel type (%s), ignoring..",