]> git.0d.be Git - empathy.git/commitdiff
EmpathyThemeAdium: implement append_event_markup
authorEmilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk>
Tue, 17 May 2011 15:35:21 +0000 (16:35 +0100)
committerEmilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk>
Mon, 5 Sep 2011 15:08:32 +0000 (16:08 +0100)
Conflicts:

libempathy-gtk/empathy-theme-adium.c

libempathy-gtk/empathy-theme-adium.c

index 4e32630d51a5e52c0f56bb9603e697844251609b..a6a697a2976921a36cee535b6148bc653a18552b 100644 (file)
@@ -975,6 +975,14 @@ theme_adium_append_event (EmpathyChatView *view,
        g_free (str_escaped);
 }
 
+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;