summaryrefslogtreecommitdiff
path: root/components/throbber
diff options
context:
space:
mode:
authorDarin Adler <darin@src.gnome.org>2001-11-04 21:41:24 +0000
committerDarin Adler <darin@src.gnome.org>2001-11-04 21:41:24 +0000
commitbdcd47873fc00c8f0013a2ecc85731622b961326 (patch)
tree55a16398d6ad6c5ec459a2be9ce8d812338295c8 /components/throbber
parent137cfdb8850ee9cdb2f5b340238de5eec0f60fb0 (diff)
downloadnautilus-bdcd47873fc00c8f0013a2ecc85731622b961326.tar.gz
Tons of files. More GtkObject -> GObject stuff.
* Tons of files. More GtkObject -> GObject stuff.
Diffstat (limited to 'components/throbber')
-rw-r--r--components/throbber/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/throbber/main.c b/components/throbber/main.c
index 454a39d12..ecaf94156 100644
--- a/components/throbber/main.c
+++ b/components/throbber/main.c
@@ -52,13 +52,13 @@ throbber_make_object (BonoboGenericFactory *factory,
return NULL;
}
- throbber = NAUTILUS_THROBBER (gtk_object_new (NAUTILUS_TYPE_THROBBER, NULL));
+ throbber = NAUTILUS_THROBBER (g_object_new (NAUTILUS_TYPE_THROBBER, NULL));
object_count++;
bonobo_control = nautilus_throbber_get_control (throbber);
- gtk_signal_connect (GTK_OBJECT (bonobo_control), "destroy", throbber_object_destroyed, NULL);
+ g_signal_connect (G_OBJECT (bonobo_control), "destroy", throbber_object_destroyed, NULL);
return bonobo_control;
}