summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2013-09-11 16:41:24 +0200
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2013-11-15 13:57:59 +0100
commitb21d3e5a166d698874295b9bb5b4e81b20c8f1d3 (patch)
tree2f2c4eed705459a9747b751b218d8e53de4a5867
parent1d8e6474075b44fdf6ae9e11b0e7e3b9578d159e (diff)
use (room-name, account-path) as primary key when removing GMenuItem
https://bugzilla.gnome.org/show_bug.cgi?id=707885
-rw-r--r--src/empathy-roster-window.c29
1 files changed, 24 insertions, 5 deletions
diff --git a/src/empathy-roster-window.c b/src/empathy-roster-window.c
index cd1aabb1..5008fb66 100644
--- a/src/empathy-roster-window.c
+++ b/src/empathy-roster-window.c
@@ -1321,6 +1321,7 @@ roster_window_favorite_chatroom_menu_add (EmpathyRosterWindow *self,
g_menu_item_set_action_and_target (item, "win.join", "(ss)",
name, account_path);
g_menu_item_set_attribute (item, "room-name", "s", name);
+ g_menu_item_set_attribute (item, "account-path", "s", account_path);
g_menu_append_item (self->priv->rooms_section, item);
g_free (label);
@@ -1342,26 +1343,44 @@ roster_window_favorite_chatroom_menu_removed_cb (
{
GList *chatrooms;
guint i, n;
+ TpAccount *account;
+ const gchar *account_path;
+
+ account = empathy_chatroom_get_account (chatroom);
+ account_path = tp_proxy_get_object_path (account);
n = g_menu_model_get_n_items (G_MENU_MODEL (self->priv->rooms_section));
for (i = 0; i < n; i++)
{
- gchar *name;
+ gchar *tmp;
+
+ if (!g_menu_model_get_item_attribute (
+ G_MENU_MODEL (self->priv->rooms_section), i,
+ "room-name", "s", &tmp))
+ continue;
+
+ if (tp_strdiff (tmp, empathy_chatroom_get_name (chatroom)))
+ {
+ g_free (tmp);
+ continue;
+ }
+
+ g_free (tmp);
if (!g_menu_model_get_item_attribute (
G_MENU_MODEL (self->priv->rooms_section), i,
- "room-name", "s", &name))
+ "account-path", "s", &tmp))
continue;
- if (tp_strdiff (name, empathy_chatroom_get_name (chatroom)))
+ if (tp_strdiff (tmp, account_path))
{
- g_free (name);
+ g_free (tmp);
continue;
}
g_menu_remove (self->priv->rooms_section, i);
- g_free (name);
+ g_free (tmp);
break;
}