diff options
author | Xavier Claessens <xclaesse@src.gnome.org> | 2008-01-16 23:32:35 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2008-01-16 23:32:35 +0800 |
commit | 2dc2f7e32f57720023b6c888146e8a09d850972a (patch) | |
tree | 27887abde0c0d34c07316cbef1495a7322809fbb /libempathy-gtk/empathy-chat-view.h | |
parent | b2dd9b77af7f4bbc610de71706028dc2b5181c2a (diff) | |
download | gsoc2013-empathy-2dc2f7e32f57720023b6c888146e8a09d850972a.tar gsoc2013-empathy-2dc2f7e32f57720023b6c888146e8a09d850972a.tar.gz gsoc2013-empathy-2dc2f7e32f57720023b6c888146e8a09d850972a.tar.bz2 gsoc2013-empathy-2dc2f7e32f57720023b6c888146e8a09d850972a.tar.lz gsoc2013-empathy-2dc2f7e32f57720023b6c888146e8a09d850972a.tar.xz gsoc2013-empathy-2dc2f7e32f57720023b6c888146e8a09d850972a.tar.zst gsoc2013-empathy-2dc2f7e32f57720023b6c888146e8a09d850972a.zip |
Rename BlockType to EMPATHY_CHAT_VIEW_BLOCK to respect namespace
svn path=/trunk/; revision=563
Diffstat (limited to 'libempathy-gtk/empathy-chat-view.h')
-rw-r--r-- | libempathy-gtk/empathy-chat-view.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/libempathy-gtk/empathy-chat-view.h b/libempathy-gtk/empathy-chat-view.h index 37a7f9977..58219ca04 100644 --- a/libempathy-gtk/empathy-chat-view.h +++ b/libempathy-gtk/empathy-chat-view.h @@ -54,13 +54,13 @@ struct _EmpathyChatViewClass { }; typedef enum { - BLOCK_TYPE_NONE, - BLOCK_TYPE_SELF, - BLOCK_TYPE_OTHER, - BLOCK_TYPE_EVENT, - BLOCK_TYPE_TIME, - BLOCK_TYPE_INVITE -} BlockType; + EMPATHY_CHAT_VIEW_BLOCK_NONE, + EMPATHY_CHAT_VIEW_BLOCK_SELF, + EMPATHY_CHAT_VIEW_BLOCK_OTHER, + EMPATHY_CHAT_VIEW_BLOCK_EVENT, + EMPATHY_CHAT_VIEW_BLOCK_TIME, + EMPATHY_CHAT_VIEW_BLOCK_INVITE +} EmpathyChatViewBlock; GType empathy_chat_view_get_type (void) G_GNUC_CONST; EmpathyChatView *empathy_chat_view_new (void); @@ -106,9 +106,9 @@ void empathy_chat_view_set_is_group_chat (EmpathyChatView *view, time_t empathy_chat_view_get_last_timestamp (EmpathyChatView *view); void empathy_chat_view_set_last_timestamp (EmpathyChatView *view, time_t timestamp); -BlockType empathy_chat_view_get_last_block_type (EmpathyChatView *view); +EmpathyChatViewBlock empathy_chat_view_get_last_block_type (EmpathyChatView *view); void empathy_chat_view_set_last_block_type (EmpathyChatView *view, - BlockType block_type); + EmpathyChatViewBlock block_type); EmpathyContact * empathy_chat_view_get_last_contact (EmpathyChatView *view); void empathy_chat_view_set_last_contact (EmpathyChatView *view, EmpathyContact *contact); |