diff options
author | Danielle Madeley <danielle.madeley@collabora.co.uk> | 2011-10-14 12:21:17 +0800 |
---|---|---|
committer | Danielle Madeley <danielle.madeley@collabora.co.uk> | 2011-10-14 12:21:35 +0800 |
commit | 1180b055b932a8f1a1a6b207093e81b412e62da2 (patch) | |
tree | ee561960f46252199ff32a468f506ace6dd3b689 /libempathy-gtk/empathy-theme-adium.c | |
parent | 8b6c644661a69599a86a5957bcb559383fb857c1 (diff) | |
parent | 601297c0ea82f38432445a2dc4a211cbdb98e915 (diff) | |
download | gsoc2013-empathy-1180b055b932a8f1a1a6b207093e81b412e62da2.tar gsoc2013-empathy-1180b055b932a8f1a1a6b207093e81b412e62da2.tar.gz gsoc2013-empathy-1180b055b932a8f1a1a6b207093e81b412e62da2.tar.bz2 gsoc2013-empathy-1180b055b932a8f1a1a6b207093e81b412e62da2.tar.lz gsoc2013-empathy-1180b055b932a8f1a1a6b207093e81b412e62da2.tar.xz gsoc2013-empathy-1180b055b932a8f1a1a6b207093e81b412e62da2.tar.zst gsoc2013-empathy-1180b055b932a8f1a1a6b207093e81b412e62da2.zip |
Merge branch: 'Add top-up link to chat text when there is insufficient credit'
Diffstat (limited to '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 c5d9d2090..9c23d3517 100644 --- a/libempathy-gtk/empathy-theme-adium.c +++ b/libempathy-gtk/empathy-theme-adium.c @@ -982,6 +982,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) { @@ -1297,6 +1305,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; |