cosmetics.

2005-04-20  Sven Neumann  <sven@gimp.org>

	* libgimp/gimpui.c (gimp_ensure_modules): cosmetics.
This commit is contained in:
Sven Neumann 2005-04-20 09:33:16 +00:00 committed by Sven Neumann
parent 2147e5029c
commit 9c376b389f
2 changed files with 8 additions and 6 deletions

View File

@ -1,3 +1,7 @@
2005-04-20 Sven Neumann <sven@gimp.org>
* libgimp/gimpui.c (gimp_ensure_modules): cosmetics.
2005-04-20 Sven Neumann <sven@gimp.org>
* plug-ins/common/mail.c: set charset to UTF-8. Initialize the

View File

@ -136,17 +136,15 @@ gimp_ensure_modules (void)
if (! module_db)
{
gchar *load_inhibit;
gchar *module_path;
load_inhibit = gimp_get_module_load_inhibit ();
module_path = gimp_gimprc_query ("module-path");
gchar *load_inhibit = gimp_get_module_load_inhibit ();
gchar *module_path = gimp_gimprc_query ("module-path");
module_db = gimp_module_db_new (FALSE);
gimp_module_db_set_load_inhibit (module_db, load_inhibit);
gimp_module_db_load (module_db, module_path);
g_free (load_inhibit);
g_free (module_path);
g_free (load_inhibit);
}
}