fixed brokeness I introduced with my last cleanup.

2004-09-30  Sven Neumann  <sven@gimp.org>

	* app/widgets/gimphelp.c (gimp_help_get_locales): fixed brokeness
	I introduced with my last cleanup.
This commit is contained in:
Sven Neumann 2004-09-29 23:31:05 +00:00 committed by Sven Neumann
parent 6387c6a38f
commit 872c5a83ae
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2004-09-30 Sven Neumann <sven@gimp.org>
* app/widgets/gimphelp.c (gimp_help_get_locales): fixed brokeness
I introduced with my last cleanup.
2004-09-29 Manish Singh <yosh@gimp.org>
* plug-ins/pygimp/plug-ins/gimpfu.py: applied slightly tweaked patch

View File

@ -353,8 +353,8 @@ gimp_help_get_locales (GimpGuiConfig *config)
if (language && (locale == NULL || strcmp (locale, "C")))
{
g_free (locale);
locale = language;
locale = g_strdup (language);
}
return g_strdup (locale);
return locale;
}