cleanup, removed unecessary G_OBJECT() casts. Should do the same for

2003-01-05  Manish Singh  <yosh@gimp.org>

        * many files in app, modules and libgimp*: cleanup, removed unecessary
        G_OBJECT() casts. Should do the same for plug-ins, when more of them
        get undeprecated.
This commit is contained in:
Manish Singh
2003-01-05 22:07:10 +00:00
committed by Manish Singh
parent 08caef0490
commit 1a44f2126c
288 changed files with 2010 additions and 2060 deletions

View File

@ -371,7 +371,7 @@ gimp_brush_select_widget (gchar *dname,
gtk_widget_set_events (brush, BRUSH_EVENT_MASK);
g_signal_connect (G_OBJECT (brush), "event",
g_signal_connect (brush, "event",
G_CALLBACK (brush_preview_events),
bsel);
@ -418,10 +418,10 @@ gimp_brush_select_widget (gchar *dname,
button = gtk_button_new_with_label ("... ");
gtk_container_add (GTK_CONTAINER (hbox), button);
gtk_widget_show(button);
gtk_widget_show (button);
bsel->button = button;
g_signal_connect (G_OBJECT (button), "clicked",
g_signal_connect (button, "clicked",
G_CALLBACK (brush_select_callback),
bsel);