diff options
author | Xavier Claessens <xclaesse@src.gnome.org> | 2008-04-02 17:41:50 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2008-04-02 17:41:50 +0800 |
commit | 137e275fa6bf039dd5581483bf0cd9ed5be88914 (patch) | |
tree | e56978c81d89599e53b8c90d6e9522875961443d /libempathy-gtk/empathy-theme-irc.c | |
parent | c17d91d81999edd94cd4417acb8e39491076098b (diff) | |
download | gsoc2013-empathy-137e275fa6bf039dd5581483bf0cd9ed5be88914.tar gsoc2013-empathy-137e275fa6bf039dd5581483bf0cd9ed5be88914.tar.gz gsoc2013-empathy-137e275fa6bf039dd5581483bf0cd9ed5be88914.tar.bz2 gsoc2013-empathy-137e275fa6bf039dd5581483bf0cd9ed5be88914.tar.lz gsoc2013-empathy-137e275fa6bf039dd5581483bf0cd9ed5be88914.tar.xz gsoc2013-empathy-137e275fa6bf039dd5581483bf0cd9ed5be88914.tar.zst gsoc2013-empathy-137e275fa6bf039dd5581483bf0cd9ed5be88914.zip |
Rework EmpathyChat's API, it is now a subclass of GtkBin.
svn path=/trunk/; revision=840
Diffstat (limited to 'libempathy-gtk/empathy-theme-irc.c')
-rw-r--r-- | libempathy-gtk/empathy-theme-irc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy-gtk/empathy-theme-irc.c b/libempathy-gtk/empathy-theme-irc.c index 7cd9588bb..07ee6781b 100644 --- a/libempathy-gtk/empathy-theme-irc.c +++ b/libempathy-gtk/empathy-theme-irc.c @@ -215,7 +215,7 @@ theme_irc_append_message (EmpathyTheme *theme, nick_tag = "irc-nick-self"; body_tag = "irc-body-self"; } else { - if (empathy_chat_should_highlight_nick (message)) { + if (empathy_message_should_highlight (message)) { nick_tag = "irc-nick-highlight"; } else { nick_tag = "irc-nick-other"; |