From c14c5393cc435e232af4634bb005a846b568ea54 Mon Sep 17 00:00:00 2001 From: Sven Neumann Date: Tue, 16 May 2006 11:43:55 +0000 Subject: [PATCH] indentation. 2006-05-16 Sven Neumann * 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. --- ChangeLog | 8 ++++++++ app/app_procs.c | 5 +++-- app/core/gimp.c | 4 +--- app/plug-in/gimppluginmanager.c | 2 ++ 4 files changed, 14 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index a2fd0eb074..dd9b21e251 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2006-05-16 Sven Neumann + + * 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 * configure.in: correct small typo. diff --git a/app/app_procs.c b/app/app_procs.c index c654616177..c60fe94fc2 100644 --- a/app/app_procs.c +++ b/app/app_procs.c @@ -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) diff --git a/app/core/gimp.c b/app/core/gimp.c index 0ebb92fa97..85f618c69a 100644 --- a/app/core/gimp.c +++ b/app/core/gimp.c @@ -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 diff --git a/app/plug-in/gimppluginmanager.c b/app/plug-in/gimppluginmanager.c index 1153e0ff63..31171d85ba 100644 --- a/app/plug-in/gimppluginmanager.c +++ b/app/plug-in/gimppluginmanager.c @@ -596,6 +596,8 @@ gimp_plug_in_manager_restore (GimpPlugInManager *manager, } g_list_free (extensions); + + status_callback (NULL, "", 1.0); } } }