summaryrefslogtreecommitdiff
path: root/src/nautilus-sidebar-title.c
diff options
context:
space:
mode:
authorDarin Adler <darin@src.gnome.org>2001-11-06 19:14:33 +0000
committerDarin Adler <darin@src.gnome.org>2001-11-06 19:14:33 +0000
commit52b329b1374239293f9c5ca9a3a9ade8c1577675 (patch)
tree08e9e4b4a0c305d2176e5839bf466d5df46db31e /src/nautilus-sidebar-title.c
parent5fb5bf3739ca776de16a32adac2e523da762045d (diff)
downloadnautilus-52b329b1374239293f9c5ca9a3a9ade8c1577675.tar.gz
Lots of files. Another GtkObject -> GObject pass.
* Lots of files. Another GtkObject -> GObject pass.
Diffstat (limited to 'src/nautilus-sidebar-title.c')
-rw-r--r--src/nautilus-sidebar-title.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/nautilus-sidebar-title.c b/src/nautilus-sidebar-title.c
index 715b46952..72018bc1c 100644
--- a/src/nautilus-sidebar-title.c
+++ b/src/nautilus-sidebar-title.c
@@ -157,8 +157,8 @@ smooth_font_changed_callback (gpointer callback_data)
eel_label_set_smooth_font (EEL_LABEL (sidebar_title->details->title_label), new_bold_font);
eel_label_set_smooth_font (EEL_LABEL (sidebar_title->details->more_info_label), new_font);
- gtk_object_unref (GTK_OBJECT (new_font));
- gtk_object_unref (GTK_OBJECT (new_bold_font));
+ g_object_unref (G_OBJECT (new_font));
+ g_object_unref (G_OBJECT (new_bold_font));
}
#if GNOME2_CONVERSION_COMPLETE
@@ -568,7 +568,7 @@ update_title_font (NautilusSidebarTitle *sidebar_title)
eel_label_set_smooth_font_size (EEL_LABEL (sidebar_title->details->title_label),
largest_fitting_smooth_font_size);
- gtk_object_unref (GTK_OBJECT (smooth_font));
+ g_object_unref (G_OBJECT (smooth_font));
#if GNOME2_CONVERSION_COMPLETE
/* Update the regular font */
@@ -742,7 +742,7 @@ update_emblems (NautilusSidebarTitle *sidebar_title)
FALSE, NULL, FALSE);
if (pixbuf != NULL) {
add_emblem (sidebar_title, pixbuf);
- gdk_pixbuf_unref (pixbuf);
+ g_object_unref (G_OBJECT (pixbuf));
}
}