mirror of https://github.com/GNOME/gimp.git
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:
parent
3fa2cbe022
commit
04539e92ed
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -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__ */
|
||||
|
|
Loading…
Reference in New Issue