indentation.

2006-05-16  Sven Neumann  <sven@gimp.org>

	* app/app_procs.c (app_run): indentation.

	* app/core/gimp.c (gimp_real_initialize)
	* app/plug-in/gimppluginmanager.c (gimp_plug_in_manager_restore):
	moved a call to status_callback() to the plug-in manager.
This commit is contained in:
Sven Neumann 2006-05-16 11:43:55 +00:00 committed by Sven Neumann
parent fa2e7350d4
commit c14c5393cc
4 changed files with 14 additions and 5 deletions

View File

@ -1,3 +1,11 @@
2006-05-16 Sven Neumann <sven@gimp.org>
* app/app_procs.c (app_run): indentation.
* app/core/gimp.c (gimp_real_initialize)
* app/plug-in/gimppluginmanager.c (gimp_plug_in_manager_restore):
moved a call to status_callback() to the plug-in manager.
2006-05-16 Kristian Rietveld <kris@gtk.org>
* configure.in: correct small typo.

View File

@ -304,8 +304,9 @@ app_run (const gchar *full_prog_name,
}
else
{
uri = file_utils_filename_to_uri (gimp->plug_in_manager->load_procs,
filenames[i], &error);
uri =
file_utils_filename_to_uri (gimp->plug_in_manager->load_procs,
filenames[i], &error);
}
if (! uri)

View File

@ -565,7 +565,7 @@ gimp_real_initialize (Gimp *gimp,
gimp_gradients_init (gimp);
/* register all internal procedures */
status_callback (NULL,_("Internal Procedures"), 0.2);
status_callback (NULL, _("Internal Procedures"), 0.2);
gimp_pdb_init_procs (gimp);
gimp_plug_in_manager_initialize (gimp->plug_in_manager, status_callback);
@ -582,8 +582,6 @@ gimp_real_restore (Gimp *gimp,
gimp_plug_in_manager_restore (gimp->plug_in_manager,
gimp_get_user_context (gimp), status_callback);
status_callback ("", "", 1.0);
}
static gboolean

View File

@ -596,6 +596,8 @@ gimp_plug_in_manager_restore (GimpPlugInManager *manager,
}
g_list_free (extensions);
status_callback (NULL, "", 1.0);
}
}
}