diff options
author | Xavier Claessens <xclaesse@gmail.com> | 2009-02-18 09:29:21 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@gmail.com> | 2009-04-22 18:21:12 +0800 |
commit | c03c34f17df46c2e3a10fd688c54ddc2bbdac218 (patch) | |
tree | bea967c1390aa637fa7ea2a91f398ef110fd0aef /libempathy/empathy-chatroom.h | |
parent | 321919b35b06d375f3c560d6b65b4f40ee68df46 (diff) | |
download | gsoc2013-empathy-c03c34f17df46c2e3a10fd688c54ddc2bbdac218.tar gsoc2013-empathy-c03c34f17df46c2e3a10fd688c54ddc2bbdac218.tar.gz gsoc2013-empathy-c03c34f17df46c2e3a10fd688c54ddc2bbdac218.tar.bz2 gsoc2013-empathy-c03c34f17df46c2e3a10fd688c54ddc2bbdac218.tar.lz gsoc2013-empathy-c03c34f17df46c2e3a10fd688c54ddc2bbdac218.tar.xz gsoc2013-empathy-c03c34f17df46c2e3a10fd688c54ddc2bbdac218.tar.zst gsoc2013-empathy-c03c34f17df46c2e3a10fd688c54ddc2bbdac218.zip |
Add getter and setter for "tp-chat" and "favorite" properties on EmpathyChatroom
Diffstat (limited to 'libempathy/empathy-chatroom.h')
-rw-r--r-- | libempathy/empathy-chatroom.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libempathy/empathy-chatroom.h b/libempathy/empathy-chatroom.h index 08e3bc1eb..560517d48 100644 --- a/libempathy/empathy-chatroom.h +++ b/libempathy/empathy-chatroom.h @@ -84,6 +84,11 @@ void empathy_chatroom_set_invite_only (EmpathyChatroom *chatroom, gboolean empathy_chatroom_equal (gconstpointer v1, gconstpointer v2); EmpathyTpChat * empathy_chatroom_get_tp_chat (EmpathyChatroom *chatroom); +void empathy_chatroom_set_tp_chat (EmpathyChatroom *chatroom, + EmpathyTpChat *tp_chat); +gboolean empathy_chatroom_is_favorite (EmpathyChatroom *chatroom); +void empathy_chatroom_set_favorite (EmpathyChatroom *chatroom, + gboolean favorite); G_END_DECLS |