From 3e384cce2caa2729cc9a9409f115fcf117701384 Mon Sep 17 00:00:00 2001 From: Xavier Claessens Date: Sat, 19 Jul 2008 09:43:05 +0200 Subject: [PATCH] Cleanup little things --- libempathy-gtk/empathy-theme-adium.c | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/libempathy-gtk/empathy-theme-adium.c b/libempathy-gtk/empathy-theme-adium.c index 9e3c4152..2b2504ff 100644 --- a/libempathy-gtk/empathy-theme-adium.c +++ b/libempathy-gtk/empathy-theme-adium.c @@ -306,12 +306,6 @@ theme_adium_parse_body (EmpathyThemeAdium *theme, return ret; } -static void -theme_adium_scroll_down (EmpathyChatView *view) -{ - /* Not implemented */ -} - #define FOLLOW(cur, str) (!strncmp (cur, str, strlen (str))) static void theme_adium_append_message (EmpathyChatView *view, @@ -362,6 +356,7 @@ theme_adium_append_message (EmpathyChatView *view, avatar_filename = priv->default_avatar_filename; } + /* FIXME: What if the message is an action "/me foo"? */ /* Get the right html/func to add the message */ if (priv->last_contact && empathy_contact_equal (priv->last_contact, sender)) { @@ -406,15 +401,18 @@ theme_adium_append_message (EmpathyChatView *view, gchar *start; gchar *end; - /* Extract the time format it provided. */ + /* Extract the time format if provided. */ if (*(start = cur + strlen("%time")) == '{') { start++; end = strstr (start, "}%"); - if (!end) /* Invalid string */ + if (!end) { + /* Invalid string */ + cur++; continue; + } format = g_strndup (start, end - start); fin = end + 1; - } + } dup_replace = empathy_time_to_string_local (timestamp, format ? format : EMPATHY_TIME_FORMAT_DISPLAY_SHORT); @@ -471,6 +469,12 @@ theme_adium_scroll (EmpathyChatView *view, /* Not implemented */ } +static void +theme_adium_scroll_down (EmpathyChatView *view) +{ + /* Not implemented */ +} + static gboolean theme_adium_get_has_selection (EmpathyChatView *view) { -- 2.39.2