aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXavier Claessens <xclaesse@src.gnome.org>2007-12-13 21:05:03 +0800
committerXavier Claessens <xclaesse@src.gnome.org>2007-12-13 21:05:03 +0800
commit190c18638caf1b17b16aada8ed9045f614f8387a (patch)
tree7d305ad0b81ab25c7e428ae805eb20fb01d95d0c
parent020d7807d0a98a824e6c7828b00440fb72b34668 (diff)
downloadgsoc2013-empathy-190c18638caf1b17b16aada8ed9045f614f8387a.tar
gsoc2013-empathy-190c18638caf1b17b16aada8ed9045f614f8387a.tar.gz
gsoc2013-empathy-190c18638caf1b17b16aada8ed9045f614f8387a.tar.bz2
gsoc2013-empathy-190c18638caf1b17b16aada8ed9045f614f8387a.tar.lz
gsoc2013-empathy-190c18638caf1b17b16aada8ed9045f614f8387a.tar.xz
gsoc2013-empathy-190c18638caf1b17b16aada8ed9045f614f8387a.tar.zst
gsoc2013-empathy-190c18638caf1b17b16aada8ed9045f614f8387a.zip
Replace g_array_insert_val(array, 0, handle) by g_array_index(array,guint,0)=handle
svn path=/trunk/; revision=476
-rw-r--r--libempathy/empathy-tp-group.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy/empathy-tp-group.c b/libempathy/empathy-tp-group.c
index e648d40ab..9dd09d8c8 100644
--- a/libempathy/empathy-tp-group.c
+++ b/libempathy/empathy-tp-group.c
@@ -407,7 +407,7 @@ tp_group_get_local_pending_cb (DBusGProxy *proxy,
reason = g_value_get_uint (g_value_array_get_nth (pending_struct, 2));
message = g_value_get_string (g_value_array_get_nth (pending_struct, 3));
- g_array_insert_val (handles, 0, member_handle);
+ g_array_index (handles, guint, 0) = member_handle;
tp_group_members_changed_cb (priv->group_iface,
message, /* message */
NULL, /* added */