aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-log-window.c
diff options
context:
space:
mode:
authorxclaesse <xclaesse@4ee84921-47dd-4033-b63a-18d7a039a3e4>2009-01-23 21:52:40 +0800
committerxclaesse <xclaesse@4ee84921-47dd-4033-b63a-18d7a039a3e4>2009-01-23 21:52:40 +0800
commit4338e593594a52f49a92519e16898a4770708e79 (patch)
tree7d6add0c574dd8aa0cab3759716bf903908d02da /libempathy-gtk/empathy-log-window.c
parent339588aaa95679199e292b7a368e53085a9f942b (diff)
downloadgsoc2013-empathy-4338e593594a52f49a92519e16898a4770708e79.tar
gsoc2013-empathy-4338e593594a52f49a92519e16898a4770708e79.tar.gz
gsoc2013-empathy-4338e593594a52f49a92519e16898a4770708e79.tar.bz2
gsoc2013-empathy-4338e593594a52f49a92519e16898a4770708e79.tar.lz
gsoc2013-empathy-4338e593594a52f49a92519e16898a4770708e79.tar.xz
gsoc2013-empathy-4338e593594a52f49a92519e16898a4770708e79.tar.zst
gsoc2013-empathy-4338e593594a52f49a92519e16898a4770708e79.zip
Renamed G_STR_EMPTY to EMP_STR_EMPTY.
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk> git-svn-id: svn+ssh://svn.gnome.org/svn/empathy/trunk@2249 4ee84921-47dd-4033-b63a-18d7a039a3e4
Diffstat (limited to 'libempathy-gtk/empathy-log-window.c')
-rw-r--r--libempathy-gtk/empathy-log-window.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libempathy-gtk/empathy-log-window.c b/libempathy-gtk/empathy-log-window.c
index 5f704a3be..24633e565 100644
--- a/libempathy-gtk/empathy-log-window.c
+++ b/libempathy-gtk/empathy-log-window.c
@@ -290,7 +290,7 @@ log_window_entry_find_changed_cb (GtkWidget *entry,
str = gtk_entry_get_text (GTK_ENTRY (window->entry_find));
- is_sensitive &= !G_STR_EMPTY (str);
+ is_sensitive &= !EMP_STR_EMPTY (str);
is_sensitive &=
!window->last_find ||
(window->last_find && strcmp (window->last_find, str) != 0);
@@ -400,7 +400,7 @@ log_window_find_populate (EmpathyLogWindow *window,
gtk_list_store_clear (store);
- if (G_STR_EMPTY (search_criteria)) {
+ if (EMP_STR_EMPTY (search_criteria)) {
/* Just clear the search. */
return;
}