summaryrefslogtreecommitdiff
path: root/libnautilus-private/nautilus-trash-monitor.c
diff options
context:
space:
mode:
authorDarin Adler <darin@src.gnome.org>2001-11-06 18:40:17 +0000
committerDarin Adler <darin@src.gnome.org>2001-11-06 18:40:17 +0000
commitf7e2844c0c5fec036921370597794a19ad6603b3 (patch)
tree6ef919a25a02d8b68a64b9892530b073cd47dbb9 /libnautilus-private/nautilus-trash-monitor.c
parentdfefd4c356ae77366f765379de8641677e4e0e91 (diff)
downloadnautilus-f7e2844c0c5fec036921370597794a19ad6603b3.tar.gz
Lots of files. Another GtkObject -> GObject pass.
* Lots of files. Another GtkObject -> GObject pass.
Diffstat (limited to 'libnautilus-private/nautilus-trash-monitor.c')
-rw-r--r--libnautilus-private/nautilus-trash-monitor.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libnautilus-private/nautilus-trash-monitor.c b/libnautilus-private/nautilus-trash-monitor.c
index 57f484d55..830ab7d71 100644
--- a/libnautilus-private/nautilus-trash-monitor.c
+++ b/libnautilus-private/nautilus-trash-monitor.c
@@ -175,7 +175,7 @@ destroy (GtkObject *object)
static void
unref_trash_monitor (void)
{
- gtk_object_unref (GTK_OBJECT (nautilus_trash_monitor));
+ g_object_unref (G_OBJECT (nautilus_trash_monitor));
}
NautilusTrashMonitor *
@@ -191,7 +191,7 @@ nautilus_trash_monitor_get (void)
nautilus_trash_monitor = NAUTILUS_TRASH_MONITOR
(g_object_new (NAUTILUS_TYPE_TRASH_MONITOR, NULL));
- gtk_object_ref (GTK_OBJECT (nautilus_trash_monitor));
+ g_object_ref (G_OBJECT (nautilus_trash_monitor));
gtk_object_sink (GTK_OBJECT (nautilus_trash_monitor));
g_atexit (unref_trash_monitor);