aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorxclaesse <xclaesse@4ee84921-47dd-4033-b63a-18d7a039a3e4>2009-01-23 21:52:52 +0800
committerxclaesse <xclaesse@4ee84921-47dd-4033-b63a-18d7a039a3e4>2009-01-23 21:52:52 +0800
commit63c27332bc4c9125ec9e66b88aedc4d596b4f46e (patch)
treeddc5dde6551c8fd14d066f1e99b8855212be44de
parent403a6270f48c31f9682d5f14713e3b36691872a9 (diff)
downloadgsoc2013-empathy-63c27332bc4c9125ec9e66b88aedc4d596b4f46e.tar
gsoc2013-empathy-63c27332bc4c9125ec9e66b88aedc4d596b4f46e.tar.gz
gsoc2013-empathy-63c27332bc4c9125ec9e66b88aedc4d596b4f46e.tar.bz2
gsoc2013-empathy-63c27332bc4c9125ec9e66b88aedc4d596b4f46e.tar.lz
gsoc2013-empathy-63c27332bc4c9125ec9e66b88aedc4d596b4f46e.tar.xz
gsoc2013-empathy-63c27332bc4c9125ec9e66b88aedc4d596b4f46e.tar.zst
gsoc2013-empathy-63c27332bc4c9125ec9e66b88aedc4d596b4f46e.zip
Replace G_STR_EMPTY in newly added code too.
git-svn-id: svn+ssh://svn.gnome.org/svn/empathy/trunk@2251 4ee84921-47dd-4033-b63a-18d7a039a3e4
-rw-r--r--src/empathy-import-dialog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/empathy-import-dialog.c b/src/empathy-import-dialog.c
index 7aa537afa..61d12e5cb 100644
--- a/src/empathy-import-dialog.c
+++ b/src/empathy-import-dialog.c
@@ -64,7 +64,7 @@ empathy_import_account_data_new (const gchar *source)
{
EmpathyImportAccountData *data;
- g_return_val_if_fail (!G_STR_EMPTY (source), NULL);
+ g_return_val_if_fail (!EMP_STR_EMPTY (source), NULL);
data = g_slice_new0 (EmpathyImportAccountData);
data->settings = g_hash_table_new_full (g_str_hash, g_str_equal, NULL,