diff options
author | Xavier Claessens <xclaesse@src.gnome.org> | 2008-03-11 20:23:00 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2008-03-11 20:23:00 +0800 |
commit | 633dd8bd9ec961c04f73335984d7ea30cc0b5684 (patch) | |
tree | 2df8a5783038833eaa689263f7a525f8eeb6d50e /libempathy-gtk | |
parent | 1ff9b568baba4d2f3e2445e63f6f68c840b20a88 (diff) | |
download | gsoc2013-empathy-633dd8bd9ec961c04f73335984d7ea30cc0b5684.tar gsoc2013-empathy-633dd8bd9ec961c04f73335984d7ea30cc0b5684.tar.gz gsoc2013-empathy-633dd8bd9ec961c04f73335984d7ea30cc0b5684.tar.bz2 gsoc2013-empathy-633dd8bd9ec961c04f73335984d7ea30cc0b5684.tar.lz gsoc2013-empathy-633dd8bd9ec961c04f73335984d7ea30cc0b5684.tar.xz gsoc2013-empathy-633dd8bd9ec961c04f73335984d7ea30cc0b5684.tar.zst gsoc2013-empathy-633dd8bd9ec961c04f73335984d7ea30cc0b5684.zip |
Continue property stuff
svn path=/trunk/; revision=768
Diffstat (limited to 'libempathy-gtk')
-rw-r--r-- | libempathy-gtk/empathy-group-chat.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/libempathy-gtk/empathy-group-chat.c b/libempathy-gtk/empathy-group-chat.c index 16fb841be..008dee81b 100644 --- a/libempathy-gtk/empathy-group-chat.c +++ b/libempathy-gtk/empathy-group-chat.c @@ -390,10 +390,15 @@ group_chat_topic_response_cb (GtkWidget *dialog, if (!G_STR_EMPTY (topic)) { EmpathyGroupChatPriv *priv; + GValue value = {0, }; priv = GET_PRIV (chat); - empathy_tp_chatroom_set_topic (priv->tp_chat, topic); + g_value_init (&value, G_TYPE_STRING); + g_value_set_string (&value, topic); + empathy_tp_chat_set_property (EMPATHY_TP_CHAT (priv->tp_chat), + &value); + g_value_unset (&value); } } |