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:
committed by
Manish Singh
parent
08caef0490
commit
1a44f2126c
@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user