diff options
author | Jonny Lamb <jonny.lamb@collabora.co.uk> | 2009-01-23 21:52:40 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2009-01-23 21:52:40 +0800 |
commit | 025c9ec4d13772b1e233a472ea90cc9ed0b27611 (patch) | |
tree | 7d6add0c574dd8aa0cab3759716bf903908d02da /libempathy-gtk/empathy-log-window.c | |
parent | 3db2a8f24d7fe902805b64377170f6ce9280a9e8 (diff) | |
download | gsoc2013-empathy-025c9ec4d13772b1e233a472ea90cc9ed0b27611.tar gsoc2013-empathy-025c9ec4d13772b1e233a472ea90cc9ed0b27611.tar.gz gsoc2013-empathy-025c9ec4d13772b1e233a472ea90cc9ed0b27611.tar.bz2 gsoc2013-empathy-025c9ec4d13772b1e233a472ea90cc9ed0b27611.tar.lz gsoc2013-empathy-025c9ec4d13772b1e233a472ea90cc9ed0b27611.tar.xz gsoc2013-empathy-025c9ec4d13772b1e233a472ea90cc9ed0b27611.tar.zst gsoc2013-empathy-025c9ec4d13772b1e233a472ea90cc9ed0b27611.zip |
Renamed G_STR_EMPTY to EMP_STR_EMPTY.
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
svn path=/trunk/; revision=2249
Diffstat (limited to 'libempathy-gtk/empathy-log-window.c')
-rw-r--r-- | libempathy-gtk/empathy-log-window.c | 4 |
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; } |