depend on glib >= 2.10.2, gtk+ >= 2.8.18 and pango >= 1.12.3. Define

2006-07-05  Michael Natterer  <mitch@gimp.org>

	* configure.in: depend on glib >= 2.10.2, gtk+ >= 2.8.18
	and pango >= 1.12.3. Define FOO_DISABLE_DEPRECATED also for
	glib 2.12, gtk+ 2.10 and pango 2.14

	* app/sanity.c
	* app/gui/gui.c: adjusted sanity checks accordingly.

	* app/dialogs/stroke-dialog.c
	* app/widgets/gimpeditor.c
	* app/widgets/gimpuimanager.c
	* libgimpwidgets/gimphelpui.c
	* libgimpwidgets/gimpmemsizeentry.c
	* plug-ins/helpbrowser/gimpthrobber.c: replace gtk_object_sink()
	by combinations of g_object_ref_sink() and g_object_unref().
This commit is contained in:
Michael Natterer
2006-07-05 13:40:47 +00:00
committed by Michael Natterer
parent 73f770122b
commit 6feb7bb82c
10 changed files with 51 additions and 34 deletions

View File

@ -534,7 +534,8 @@ gimp_editor_add_stock_box (GimpEditor *editor,
g_list_free (children);
gtk_object_sink (GTK_OBJECT (hbox));
g_object_ref_sink (hbox);
g_object_unref (hbox);
return first_button;
}