summaryrefslogtreecommitdiff
path: root/libnautilus-private/nautilus-bookmark.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 /libnautilus-private/nautilus-bookmark.c
parent5fb5bf3739ca776de16a32adac2e523da762045d (diff)
downloadnautilus-52b329b1374239293f9c5ca9a3a9ade8c1577675.tar.gz
Lots of files. Another GtkObject -> GObject pass.
* Lots of files. Another GtkObject -> GObject pass.
Diffstat (limited to 'libnautilus-private/nautilus-bookmark.c')
-rw-r--r--libnautilus-private/nautilus-bookmark.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libnautilus-private/nautilus-bookmark.c b/libnautilus-private/nautilus-bookmark.c
index 81c185787..20fc5226e 100644
--- a/libnautilus-private/nautilus-bookmark.c
+++ b/libnautilus-private/nautilus-bookmark.c
@@ -217,7 +217,7 @@ nautilus_bookmark_get_pixmap_and_mask (NautilusBookmark *bookmark,
}
gdk_pixbuf_render_pixmap_and_mask (pixbuf, pixmap_return, mask_return, EEL_STANDARD_ALPHA_THRESHHOLD);
- gdk_pixbuf_unref (pixbuf);
+ g_object_unref (G_OBJECT (pixbuf));
return TRUE;
}
@@ -518,7 +518,7 @@ nautilus_bookmark_new_with_icon (const char *uri, const char *name,
NautilusBookmark *new_bookmark;
new_bookmark = NAUTILUS_BOOKMARK (g_object_new (NAUTILUS_TYPE_BOOKMARK, NULL));
- gtk_object_ref (GTK_OBJECT (new_bookmark));
+ g_object_ref (G_OBJECT (new_bookmark));
gtk_object_sink (GTK_OBJECT (new_bookmark));
new_bookmark->details->name = g_strdup (name);