aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-new-message-dialog.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-new-message-dialog.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-new-message-dialog.c')
-rw-r--r--libempathy-gtk/empathy-new-message-dialog.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libempathy-gtk/empathy-new-message-dialog.c b/libempathy-gtk/empathy-new-message-dialog.c
index d0d99bc3e..9127e2919 100644
--- a/libempathy-gtk/empathy-new-message-dialog.c
+++ b/libempathy-gtk/empathy-new-message-dialog.c
@@ -175,7 +175,7 @@ new_message_dialog_response_cb (GtkWidget *widget,
account = empathy_account_chooser_get_account (EMPATHY_ACCOUNT_CHOOSER (dialog->account_chooser));
id = gtk_entry_get_text (GTK_ENTRY (dialog->entry_id));
- if (!account || G_STR_EMPTY (id)) {
+ if (!account || EMP_STR_EMPTY (id)) {
if (account) {
g_object_unref (account);
}
@@ -209,7 +209,7 @@ new_message_change_state_button_cb (GtkEditable *editable,
gboolean sensitive;
id = gtk_entry_get_text (GTK_ENTRY (editable));
- sensitive = !G_STR_EMPTY (id);
+ sensitive = !EMP_STR_EMPTY (id);
gtk_widget_set_sensitive (dialog->button_chat, sensitive);
gtk_widget_set_sensitive (dialog->button_call, sensitive);