aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-contact-widget.c
diff options
context:
space:
mode:
authorJonny Lamb <jonny.lamb@collabora.co.uk>2009-01-23 21:52:40 +0800
committerXavier Claessens <xclaesse@src.gnome.org>2009-01-23 21:52:40 +0800
commit025c9ec4d13772b1e233a472ea90cc9ed0b27611 (patch)
tree7d6add0c574dd8aa0cab3759716bf903908d02da /libempathy-gtk/empathy-contact-widget.c
parent3db2a8f24d7fe902805b64377170f6ce9280a9e8 (diff)
downloadgsoc2013-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-contact-widget.c')
-rw-r--r--libempathy-gtk/empathy-contact-widget.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libempathy-gtk/empathy-contact-widget.c b/libempathy-gtk/empathy-contact-widget.c
index b3fbe334b..07058e4bc 100644
--- a/libempathy-gtk/empathy-contact-widget.c
+++ b/libempathy-gtk/empathy-contact-widget.c
@@ -703,7 +703,7 @@ contact_widget_change_contact (EmpathyContactWidget *information)
const gchar *id;
id = gtk_entry_get_text (GTK_ENTRY (information->widget_id));
- if (G_STR_EMPTY (id))
+ if (EMP_STR_EMPTY (id))
return;
contact = empathy_contact_factory_get_from_id (information->factory,
@@ -979,7 +979,7 @@ contact_widget_model_find_name (EmpathyContactWidget *information,
GtkTreeModel *model;
FindName data;
- if (G_STR_EMPTY (name))
+ if (EMP_STR_EMPTY (name))
return FALSE;
data.information = information;
@@ -1091,7 +1091,7 @@ contact_widget_entry_group_changed_cb (GtkEditable *editable,
gtk_widget_set_sensitive (GTK_WIDGET (information->button_group), FALSE);
else
gtk_widget_set_sensitive (GTK_WIDGET (information->button_group),
- !G_STR_EMPTY (group));
+ !EMP_STR_EMPTY (group));
}
static void