diff options
Diffstat (limited to 'libempathy-gtk/empathy-chat-view.h')
-rw-r--r-- | libempathy-gtk/empathy-chat-view.h | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/libempathy-gtk/empathy-chat-view.h b/libempathy-gtk/empathy-chat-view.h index 52b39d124..11010c45b 100644 --- a/libempathy-gtk/empathy-chat-view.h +++ b/libempathy-gtk/empathy-chat-view.h @@ -53,10 +53,12 @@ struct _EmpathyChatViewIface { void (*clear) (EmpathyChatView *view); gboolean (*find_previous) (EmpathyChatView *view, const gchar *search_criteria, - gboolean new_search); + gboolean new_search, + gboolean match_case); gboolean (*find_next) (EmpathyChatView *view, const gchar *search_criteria, - gboolean new_search); + gboolean new_search, + gboolean match_case); void (*find_abilities) (EmpathyChatView *view, const gchar *search_criteria, gboolean *can_do_previous, @@ -79,10 +81,12 @@ gboolean empathy_chat_view_get_has_selection (EmpathyChatView *view); void empathy_chat_view_clear (EmpathyChatView *view); gboolean empathy_chat_view_find_previous (EmpathyChatView *view, const gchar *search_criteria, - gboolean new_search); + gboolean new_search, + gboolean match_case); gboolean empathy_chat_view_find_next (EmpathyChatView *view, const gchar *search_criteria, - gboolean new_search); + gboolean new_search, + gboolean match_case); void empathy_chat_view_find_abilities (EmpathyChatView *view, const gchar *search_criteria, gboolean *can_do_previous, |