cleanup, removed unecessary G_OBJECT() casts.

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

        * lots of files in plug-ins: cleanup, removed unecessary
        G_OBJECT() casts.
This commit is contained in:
Manish Singh
2003-01-07 06:16:02 +00:00
committed by Manish Singh
parent 2079245f48
commit 01dbd2c339
179 changed files with 2047 additions and 1758 deletions

View File

@ -118,9 +118,9 @@ make_default_dialog(const gchar *title)
NULL);
data->dialog = dialog;
g_signal_connect (G_OBJECT(dialog), "destroy",
g_signal_connect (dialog, "destroy",
G_CALLBACK(gtk_widget_destroyed), &data->dialog);
g_signal_connect(G_OBJECT(dialog), "delete_event",
g_signal_connect(dialog, "delete_event",
G_CALLBACK(dialog_destroy), (gpointer) data);
return data;