diff options
author | Thomas Meire <blackskad@gmail.com> | 2010-01-17 18:29:49 +0800 |
---|---|---|
committer | Thomas Meire <blackskad@gmail.com> | 2010-01-21 08:20:08 +0800 |
commit | 1d1701965496cb0d66a759cb4f7996de44a02044 (patch) | |
tree | ee3499159e87da157f7c2400a1823d49cacb78cc /libempathy-gtk/empathy-log-window.c | |
parent | a988a27966b67140d57695edd32b8563cb3a2d03 (diff) | |
download | gsoc2013-empathy-1d1701965496cb0d66a759cb4f7996de44a02044.tar gsoc2013-empathy-1d1701965496cb0d66a759cb4f7996de44a02044.tar.gz gsoc2013-empathy-1d1701965496cb0d66a759cb4f7996de44a02044.tar.bz2 gsoc2013-empathy-1d1701965496cb0d66a759cb4f7996de44a02044.tar.lz gsoc2013-empathy-1d1701965496cb0d66a759cb4f7996de44a02044.tar.xz gsoc2013-empathy-1d1701965496cb0d66a759cb4f7996de44a02044.tar.zst gsoc2013-empathy-1d1701965496cb0d66a759cb4f7996de44a02044.zip |
added case sensitive search for adium themes (reverted previous commit)
Diffstat (limited to 'libempathy-gtk/empathy-log-window.c')
-rw-r--r-- | libempathy-gtk/empathy-log-window.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/libempathy-gtk/empathy-log-window.c b/libempathy-gtk/empathy-log-window.c index c8785e2c0..dba887780 100644 --- a/libempathy-gtk/empathy-log-window.c +++ b/libempathy-gtk/empathy-log-window.c @@ -410,7 +410,8 @@ log_window_find_changed_cb (GtkTreeSelection *selection, window->last_find, FALSE); empathy_chat_view_find_next (window->chatview_find, window->last_find, - TRUE); + TRUE, + FALSE); empathy_chat_view_find_abilities (window->chatview_find, window->last_find, &can_do_previous, @@ -605,6 +606,7 @@ log_window_button_next_clicked_cb (GtkWidget *widget, empathy_chat_view_find_next (window->chatview_find, window->last_find, + FALSE, FALSE); empathy_chat_view_find_abilities (window->chatview_find, window->last_find, @@ -625,6 +627,7 @@ log_window_button_previous_clicked_cb (GtkWidget *widget, empathy_chat_view_find_previous (window->chatview_find, window->last_find, + FALSE, FALSE); empathy_chat_view_find_abilities (window->chatview_find, window->last_find, @@ -1113,7 +1116,8 @@ log_window_entry_chats_changed_cb (GtkWidget *entry, if (str) { empathy_chat_view_find_next (window->chatview_chats, str, - TRUE); + TRUE, + FALSE); } } @@ -1128,6 +1132,7 @@ log_window_entry_chats_activate_cb (GtkWidget *entry, if (str) { empathy_chat_view_find_next (window->chatview_chats, str, + FALSE, FALSE); } } |