gimp_progress_set_text() has boolean return value.

2005-02-13  Sven Neumann  <sven@gimp.org>

	* libgimp/gimpprogress.[ch]: gimp_progress_set_text() has boolean
	return value.
This commit is contained in:
Sven Neumann 2005-02-13 01:43:07 +00:00 committed by Sven Neumann
parent 4c58c5beb7
commit 04f08db690
3 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2005-02-13 Sven Neumann <sven@gimp.org>
* libgimp/gimpprogress.[ch]: gimp_progress_set_text() has boolean
return value.
2005-02-13 Sven Neumann <sven@gimp.org>
* plug-ins/jpeg/jpeg-exif.c: use context specific labels for the

View File

@ -193,7 +193,7 @@ gimp_progress_uninstall (const gchar *progress_callback)
*
* Since: GIMP 2.4
**/
void
gboolean
gimp_progress_set_text (const gchar *format,
...)
{

View File

@ -42,7 +42,7 @@ const gchar * gimp_progress_install (GimpProgressStartCallback start_callback,
gpointer user_data);
gpointer gimp_progress_uninstall (const gchar *progress_callback);
void gimp_progress_set_text (const gchar *format,
gboolean gimp_progress_set_text (const gchar *format,
...) G_GNUC_PRINTF (1, 2);