From b5f204ac3c578938e6f210f120b61dc41d417c34 Mon Sep 17 00:00:00 2001 From: Michael Natterer Date: Wed, 14 Nov 2007 10:00:37 +0000 Subject: tests/testbbox.c use g_object_ref/unref instead of deprecated functions. 2007-11-14 Michael Natterer * tests/testbbox.c * tests/testframe.c: use g_object_ref/unref instead of deprecated functions. svn path=/trunk/; revision=18990 --- tests/testframe.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'tests/testframe.c') diff --git a/tests/testframe.c b/tests/testframe.c index 2abb83249b..b64ec6400d 100644 --- a/tests/testframe.c +++ b/tests/testframe.c @@ -30,7 +30,8 @@ spin_ythickness_cb (GtkSpinButton *spin, gpointer user_data) rcstyle->xthickness = GTK_WIDGET (frame)->style->xthickness; rcstyle->ythickness = gtk_spin_button_get_value (spin); gtk_widget_modify_style (frame, rcstyle); - gtk_rc_style_unref (rcstyle); + + g_object_unref (rcstyle); } static void @@ -44,7 +45,7 @@ spin_xthickness_cb (GtkSpinButton *spin, gpointer user_data) rcstyle->ythickness = GTK_WIDGET (frame)->style->ythickness; gtk_widget_modify_style (frame, rcstyle); - gtk_rc_style_unref (rcstyle); + g_object_unref (rcstyle); } /* Function to normalize rounding errors in FP arithmetic to -- cgit v1.2.1