renamed gimp_plug_in_proc_frame_get_return_vals() to

2008-08-17  Sven Neumann  <sven@gimp.org>

	* app/plug-in/gimppluginprocframe.[ch]: renamed
	gimp_plug_in_proc_frame_get_return_vals() to
	gimp_plug_in_proc_frame_get_return_values().

	* app/plug-in/gimppluginmanager-call.c: changed accordingly.

svn path=/trunk/; revision=26619
This commit is contained in:
Sven Neumann 2008-08-17 12:08:52 +00:00 committed by Sven Neumann
parent 3fa2cbe022
commit 04539e92ed
4 changed files with 13 additions and 4 deletions

View File

@ -1,3 +1,11 @@
2008-08-17 Sven Neumann <sven@gimp.org>
* app/plug-in/gimppluginprocframe.[ch]: renamed
gimp_plug_in_proc_frame_get_return_vals() to
gimp_plug_in_proc_frame_get_return_values().
* app/plug-in/gimppluginmanager-call.c: changed accordingly.
2008-08-17 Sven Neumann <sven@gimp.org>
* plug-ins/file-psd/psd-util.c (psd_set_error): changed to use

View File

@ -273,7 +273,7 @@ gimp_plug_in_manager_call_run (GimpPlugInManager *manager,
g_main_loop_unref (proc_frame->main_loop);
proc_frame->main_loop = NULL;
return_vals = gimp_plug_in_proc_frame_get_return_vals (proc_frame);
return_vals = gimp_plug_in_proc_frame_get_return_values (proc_frame);
}
g_object_unref (plug_in);
@ -342,7 +342,7 @@ gimp_plug_in_manager_call_run_temp (GimpPlugInManager *manager,
* gimp_plug_in_handle_temp_proc_return()
*/
return_vals = gimp_plug_in_proc_frame_get_return_vals (proc_frame);
return_vals = gimp_plug_in_proc_frame_get_return_values (proc_frame);
gimp_plug_in_proc_frame_unref (proc_frame, plug_in);
g_object_unref (plug_in);

View File

@ -160,7 +160,7 @@ gimp_plug_in_proc_frame_unref (GimpPlugInProcFrame *proc_frame,
}
GValueArray *
gimp_plug_in_proc_frame_get_return_vals (GimpPlugInProcFrame *proc_frame)
gimp_plug_in_proc_frame_get_return_values (GimpPlugInProcFrame *proc_frame)
{
GValueArray *return_vals;

View File

@ -59,7 +59,8 @@ GimpPlugInProcFrame * gimp_plug_in_proc_frame_ref (GimpPlugInProcFrame *proc
void gimp_plug_in_proc_frame_unref (GimpPlugInProcFrame *proc_frame,
GimpPlugIn *plug_in);
GValueArray * gimp_plug_in_proc_frame_get_return_vals (GimpPlugInProcFrame *proc_frame);
GValueArray * gimp_plug_in_proc_frame_get_return_values
(GimpPlugInProcFrame *proc_frame);
#endif /* __GIMP_PLUG_IN_PROC_FRAME_H__ */