diff options
Diffstat (limited to 'libempathy-gtk/gossip-chat.h')
-rw-r--r-- | libempathy-gtk/gossip-chat.h | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/libempathy-gtk/gossip-chat.h b/libempathy-gtk/gossip-chat.h index 5fedfdd01..85bfc66b9 100644 --- a/libempathy-gtk/gossip-chat.h +++ b/libempathy-gtk/gossip-chat.h @@ -57,6 +57,7 @@ struct _GossipChat { /* Protected */ GossipChatView *view; + EmpathyTpChat *tp_chat; GtkWidget *input_text_view; gboolean is_first_char; McAccount *account; @@ -66,11 +67,13 @@ struct _GossipChatClass { GObjectClass parent; /* VTable */ - const gchar * (*get_name) (GossipChat *chat); - gchar * (*get_tooltip) (GossipChat *chat); - const gchar * (*get_status_icon_name)(GossipChat *chat); - GtkWidget * (*get_widget) (GossipChat *chat); - gboolean (*is_group_chat) (GossipChat *chat); + const gchar * (*get_name) (GossipChat *chat); + gchar * (*get_tooltip) (GossipChat *chat); + const gchar * (*get_status_icon_name)(GossipChat *chat); + GtkWidget * (*get_widget) (GossipChat *chat); + gboolean (*is_group_chat) (GossipChat *chat); + void (*set_tp_chat) (GossipChat *chat, + EmpathyTpChat *tp_chat); }; GType gossip_chat_get_type (void); |