aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-chat-view.c
diff options
context:
space:
mode:
authorThomas Meire <blackskad@gmail.com>2010-01-20 00:25:36 +0800
committerThomas Meire <blackskad@gmail.com>2010-01-21 08:20:08 +0800
commitba2326210afd63d1ae622c57b76b3b1f56ab4e9e (patch)
tree0b77cf03eb841925a3238b0be30027d18b212b2f /libempathy-gtk/empathy-chat-view.c
parent0f812eb93730b84b7cbb60aaacf803aabdd6f9c5 (diff)
downloadgsoc2013-empathy-ba2326210afd63d1ae622c57b76b3b1f56ab4e9e.tar
gsoc2013-empathy-ba2326210afd63d1ae622c57b76b3b1f56ab4e9e.tar.gz
gsoc2013-empathy-ba2326210afd63d1ae622c57b76b3b1f56ab4e9e.tar.bz2
gsoc2013-empathy-ba2326210afd63d1ae622c57b76b3b1f56ab4e9e.tar.lz
gsoc2013-empathy-ba2326210afd63d1ae622c57b76b3b1f56ab4e9e.tar.xz
gsoc2013-empathy-ba2326210afd63d1ae622c57b76b3b1f56ab4e9e.tar.zst
gsoc2013-empathy-ba2326210afd63d1ae622c57b76b3b1f56ab4e9e.zip
add match_case option to find_abilities
Diffstat (limited to 'libempathy-gtk/empathy-chat-view.c')
-rw-r--r--libempathy-gtk/empathy-chat-view.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libempathy-gtk/empathy-chat-view.c b/libempathy-gtk/empathy-chat-view.c
index e68839635..ada669885 100644
--- a/libempathy-gtk/empathy-chat-view.c
+++ b/libempathy-gtk/empathy-chat-view.c
@@ -164,6 +164,7 @@ empathy_chat_view_find_next (EmpathyChatView *view,
void
empathy_chat_view_find_abilities (EmpathyChatView *view,
const gchar *search_criteria,
+ gboolean match_case,
gboolean *can_do_previous,
gboolean *can_do_next)
{
@@ -172,6 +173,7 @@ empathy_chat_view_find_abilities (EmpathyChatView *view,
if (EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->find_abilities) {
EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->find_abilities (view,
search_criteria,
+ match_case,
can_do_previous,
can_do_next);
}