diff options
author | Emilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk> | 2011-05-17 23:35:21 +0800 |
---|---|---|
committer | Emilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk> | 2011-09-05 23:08:32 +0800 |
commit | d22e151a1880642b5b4ee06e8566727ddfe9a79c (patch) | |
tree | 55ac0fdb493d8474a4f1cedc6d9d26f036f2c3ec | |
parent | 6c8045628c9b9092e80aa0183d0e33798c37d661 (diff) | |
download | gsoc2013-empathy-d22e151a1880642b5b4ee06e8566727ddfe9a79c.tar gsoc2013-empathy-d22e151a1880642b5b4ee06e8566727ddfe9a79c.tar.gz gsoc2013-empathy-d22e151a1880642b5b4ee06e8566727ddfe9a79c.tar.bz2 gsoc2013-empathy-d22e151a1880642b5b4ee06e8566727ddfe9a79c.tar.lz gsoc2013-empathy-d22e151a1880642b5b4ee06e8566727ddfe9a79c.tar.xz gsoc2013-empathy-d22e151a1880642b5b4ee06e8566727ddfe9a79c.tar.zst gsoc2013-empathy-d22e151a1880642b5b4ee06e8566727ddfe9a79c.zip |
EmpathyThemeAdium: implement append_event_markup
Conflicts:
libempathy-gtk/empathy-theme-adium.c
-rw-r--r-- | libempathy-gtk/empathy-theme-adium.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libempathy-gtk/empathy-theme-adium.c b/libempathy-gtk/empathy-theme-adium.c index 4e32630d5..a6a697a29 100644 --- a/libempathy-gtk/empathy-theme-adium.c +++ b/libempathy-gtk/empathy-theme-adium.c @@ -976,6 +976,14 @@ theme_adium_append_event (EmpathyChatView *view, } static void +theme_adium_append_event_markup (EmpathyChatView *view, + const gchar *markup_text, + const gchar *fallback_text) +{ + theme_adium_append_event_escaped (view, markup_text); +} + +static void theme_adium_edit_message (EmpathyChatView *view, EmpathyMessage *message) { @@ -1291,6 +1299,7 @@ theme_adium_iface_init (EmpathyChatViewIface *iface) { iface->append_message = theme_adium_append_message; iface->append_event = theme_adium_append_event; + iface->append_event_markup = theme_adium_append_event_markup; iface->edit_message = theme_adium_edit_message; iface->scroll = theme_adium_scroll; iface->scroll_down = theme_adium_scroll_down; |