From: Alexander Larsson Date: Fri, 28 Mar 2008 11:44:04 +0000 (+0000) Subject: Reuse old string instead of adding new one. X-Git-Tag: GLIB_2_17_0~128 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b4e4bbd594ad84de4221e501bf3048082469dc32;p=platform%2Fupstream%2Fglib.git Reuse old string instead of adding new one. 2008-03-28 Alexander Larsson * glocalfile.c (g_local_file_move): Reuse old string instead of adding new one. svn path=/trunk/; revision=6762 --- diff --git a/gio/ChangeLog b/gio/ChangeLog index db33428..ceadde9 100644 --- a/gio/ChangeLog +++ b/gio/ChangeLog @@ -1,3 +1,8 @@ +2008-03-28 Alexander Larsson + + * glocalfile.c (g_local_file_move): + Reuse old string instead of adding new one. + 2008-03-28 Lin Ma * fen/*.[hc]: still copyright issue. I hate copyright. diff --git a/gio/glocalfile.c b/gio/glocalfile.c index 529d808..d2da9c7 100644 --- a/gio/glocalfile.c +++ b/gio/glocalfile.c @@ -2102,7 +2102,7 @@ g_local_file_move (GFile *source, g_set_error (error, G_IO_ERROR, G_IO_ERROR_IS_DIRECTORY, - _("File is directory")); + _("Can't copy over directory")); return FALSE; } }