diff options
author | Xavier Claessens <xclaesse@src.gnome.org> | 2008-12-16 17:24:19 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2008-12-16 17:24:19 +0800 |
commit | eac8ae89de90f0162619f6bc0d103f69b842fe96 (patch) | |
tree | 16c7d8494a189ddc0155c028bbe29b369ba75158 /libempathy-gtk/empathy-chat-view.h | |
parent | cb5022e708a8e7e38b98ffdd9357d95db90badd7 (diff) | |
download | gsoc2013-empathy-eac8ae89de90f0162619f6bc0d103f69b842fe96.tar gsoc2013-empathy-eac8ae89de90f0162619f6bc0d103f69b842fe96.tar.gz gsoc2013-empathy-eac8ae89de90f0162619f6bc0d103f69b842fe96.tar.bz2 gsoc2013-empathy-eac8ae89de90f0162619f6bc0d103f69b842fe96.tar.lz gsoc2013-empathy-eac8ae89de90f0162619f6bc0d103f69b842fe96.tar.xz gsoc2013-empathy-eac8ae89de90f0162619f6bc0d103f69b842fe96.tar.zst gsoc2013-empathy-eac8ae89de90f0162619f6bc0d103f69b842fe96.zip |
Remove useless virtual methods
svn path=/trunk/; revision=1988
Diffstat (limited to 'libempathy-gtk/empathy-chat-view.h')
-rw-r--r-- | libempathy-gtk/empathy-chat-view.h | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/libempathy-gtk/empathy-chat-view.h b/libempathy-gtk/empathy-chat-view.h index bf5140001..875ef3983 100644 --- a/libempathy-gtk/empathy-chat-view.h +++ b/libempathy-gtk/empathy-chat-view.h @@ -48,8 +48,6 @@ struct _EmpathyChatViewIface { EmpathyMessage *msg); void (*append_event) (EmpathyChatView *view, const gchar *str); - void (*set_margin) (EmpathyChatView *view, - gint margin); void (*scroll) (EmpathyChatView *view, gboolean allow_scrolling); void (*scroll_down) (EmpathyChatView *view); @@ -68,14 +66,6 @@ struct _EmpathyChatViewIface { void (*highlight) (EmpathyChatView *view, const gchar *text); void (*copy_clipboard) (EmpathyChatView *view); - EmpathyTheme * (*get_theme) (EmpathyChatView *view); - void (*set_theme) (EmpathyChatView *view, - EmpathyTheme *theme); - time_t (*get_last_timestamp) (EmpathyChatView *view); - void (*set_last_timestamp) (EmpathyChatView *view, - time_t timestamp); - EmpathyContact * (*get_last_contact) (EmpathyChatView *view); - }; GType empathy_chat_view_get_type (void) G_GNUC_CONST; @@ -101,15 +91,6 @@ void empathy_chat_view_find_abilities (EmpathyChatView *view, void empathy_chat_view_highlight (EmpathyChatView *view, const gchar *text); void empathy_chat_view_copy_clipboard (EmpathyChatView *view); -EmpathyTheme * empathy_chat_view_get_theme (EmpathyChatView *view); -void empathy_chat_view_set_theme (EmpathyChatView *view, - EmpathyTheme *theme); -void empathy_chat_view_set_margin (EmpathyChatView *view, - gint margin); -time_t empathy_chat_view_get_last_timestamp (EmpathyChatView *view); -void empathy_chat_view_set_last_timestamp (EmpathyChatView *view, - time_t timestamp); -EmpathyContact * empathy_chat_view_get_last_contact (EmpathyChatView *view); G_END_DECLS |