From 8194a500d086b884ef7272e6871911228bdef296 Mon Sep 17 00:00:00 2001 From: Travis Reitter Date: Thu, 8 Jul 2010 14:28:41 -0700 Subject: [PATCH] Use uint for TpContactFeature, since the type doesn't exist in the Vala bindings. --- backends/telepathy/tp-lowlevel.c | 4 ++-- backends/telepathy/tp-lowlevel.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/backends/telepathy/tp-lowlevel.c b/backends/telepathy/tp-lowlevel.c index 0e97684..cee895e 100644 --- a/backends/telepathy/tp-lowlevel.c +++ b/backends/telepathy/tp-lowlevel.c @@ -170,7 +170,7 @@ folks_tp_lowlevel_connection_get_contacts_by_handle_async ( TpConnection *conn, const guint *contact_handles, guint contact_handles_length, - TpContactFeature *features, + guint *features, guint features_length, GAsyncReadyCallback callback, gpointer user_data) @@ -258,7 +258,7 @@ folks_tp_lowlevel_connection_get_contacts_by_id_async ( TpConnection *conn, const char **contact_ids, guint contact_ids_length, - TpContactFeature *features, + guint *features, guint features_length, GAsyncReadyCallback callback, gpointer user_data) diff --git a/backends/telepathy/tp-lowlevel.h b/backends/telepathy/tp-lowlevel.h index 941080f..7c0246f 100644 --- a/backends/telepathy/tp-lowlevel.h +++ b/backends/telepathy/tp-lowlevel.h @@ -109,7 +109,7 @@ folks_tp_lowlevel_connection_get_contacts_by_handle_async ( TpConnection *conn, const guint *contact_handles, guint contact_handles_length, - TpContactFeature *features, + guint *features, guint features_length, GAsyncReadyCallback callback, gpointer user_data); @@ -126,7 +126,7 @@ folks_tp_lowlevel_connection_get_contacts_by_id_async ( TpConnection *conn, const char **contact_ids, guint contact_ids_length, - TpContactFeature *features, + guint *features, guint features_length, GAsyncReadyCallback callback, gpointer user_data); -- 2.7.4