aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-chat-view.c
diff options
context:
space:
mode:
authorThomas Meire <blackskad@gmail.com>2010-01-17 06:41:32 +0800
committerThomas Meire <blackskad@gmail.com>2010-01-21 08:20:08 +0800
commitd128e3a36e43a08a9dfe4a2c42b9485e146faeae (patch)
treead57738003d41968d9f00a02740ff8321c462335 /libempathy-gtk/empathy-chat-view.c
parent993766233887be988d3864c64be85c83989d42ad (diff)
downloadgsoc2013-empathy-d128e3a36e43a08a9dfe4a2c42b9485e146faeae.tar
gsoc2013-empathy-d128e3a36e43a08a9dfe4a2c42b9485e146faeae.tar.gz
gsoc2013-empathy-d128e3a36e43a08a9dfe4a2c42b9485e146faeae.tar.bz2
gsoc2013-empathy-d128e3a36e43a08a9dfe4a2c42b9485e146faeae.tar.lz
gsoc2013-empathy-d128e3a36e43a08a9dfe4a2c42b9485e146faeae.tar.xz
gsoc2013-empathy-d128e3a36e43a08a9dfe4a2c42b9485e146faeae.tar.zst
gsoc2013-empathy-d128e3a36e43a08a9dfe4a2c42b9485e146faeae.zip
added case sensitive highlighting for adium themes
Diffstat (limited to 'libempathy-gtk/empathy-chat-view.c')
-rw-r--r--libempathy-gtk/empathy-chat-view.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/libempathy-gtk/empathy-chat-view.c b/libempathy-gtk/empathy-chat-view.c
index ed5740a8e..7072ca065 100644
--- a/libempathy-gtk/empathy-chat-view.c
+++ b/libempathy-gtk/empathy-chat-view.c
@@ -175,12 +175,13 @@ empathy_chat_view_find_abilities (EmpathyChatView *view,
void
empathy_chat_view_highlight (EmpathyChatView *view,
- const gchar *text)
+ const gchar *text,
+ gboolean match_case)
{
g_return_if_fail (EMPATHY_IS_CHAT_VIEW (view));
if (EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->highlight) {
- EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->highlight (view, text);
+ EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->highlight (view, text, match_case);
}
}