diff options
author | Michael Natterer <mitch@imendio.com> | 2008-06-18 09:12:32 +0000 |
---|---|---|
committer | Michael Natterer <mitch@src.gnome.org> | 2008-06-18 09:12:32 +0000 |
commit | fe8a946e876ad50ad70535ab70380c03a4eab58b (patch) | |
tree | 36a02fd1b3bcb54afc7b1177316a6599230e9ca9 /gtk/gtkmain.h | |
parent | 060948a43b05e6c62d0d1d246e012cebd1956f5d (diff) | |
download | gtk+-fe8a946e876ad50ad70535ab70380c03a4eab58b.tar.gz |
deprecate GtkDestroyNotify.
2008-06-18 Michael Natterer <mitch@imendio.com>
* gtk/gtktypeutils.h: deprecate GtkDestroyNotify.
* gtk/gtkactiongroup.[ch]
* gtk/gtkcombobox.[ch]
* gtk/gtkcontainer.[ch]
* gtk/gtkliststore.[ch]
* gtk/gtkmain.[ch]
* gtk/gtkmenu.c
* gtk/gtkstock.[ch]
* gtk/gtktreedatalist.[ch]
* gtk/gtktreemodelfilter.[ch]
* gtk/gtktreemodelsort.[ch]
* gtk/gtktreeprivate.h
* gtk/gtktreeselection.[ch]
* gtk/gtktreesortable.[ch]
* gtk/gtktreestore.[ch]
* gtk/gtktreeview.[ch]
* gtk/gtktreeviewcolumn.[ch]: s/GtkDestroyNotify/GDestroyNotify/g.
svn path=/trunk/; revision=20448
Diffstat (limited to 'gtk/gtkmain.h')
-rw-r--r-- | gtk/gtkmain.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk/gtkmain.h b/gtk/gtkmain.h index 5529d7696f..975057e864 100644 --- a/gtk/gtkmain.h +++ b/gtk/gtkmain.h @@ -167,7 +167,7 @@ guint gtk_quit_add_full (guint main_level, GtkFunction function, GtkCallbackMarshal marshal, gpointer data, - GtkDestroyNotify destroy); + GDestroyNotify destroy); void gtk_quit_remove (guint quit_handler_id); void gtk_quit_remove_by_data (gpointer data); #ifndef GTK_DISABLE_DEPRECATED @@ -178,7 +178,7 @@ guint gtk_timeout_add_full (guint32 interval, GtkFunction function, GtkCallbackMarshal marshal, gpointer data, - GtkDestroyNotify destroy); + GDestroyNotify destroy); void gtk_timeout_remove (guint timeout_handler_id); guint gtk_idle_add (GtkFunction function, @@ -190,7 +190,7 @@ guint gtk_idle_add_full (gint priority, GtkFunction function, GtkCallbackMarshal marshal, gpointer data, - GtkDestroyNotify destroy); + GDestroyNotify destroy); void gtk_idle_remove (guint idle_handler_id); void gtk_idle_remove_by_data (gpointer data); guint gtk_input_add_full (gint source, @@ -198,7 +198,7 @@ guint gtk_input_add_full (gint source, GdkInputFunction function, GtkCallbackMarshal marshal, gpointer data, - GtkDestroyNotify destroy); + GDestroyNotify destroy); void gtk_input_remove (guint input_handler_id); #endif /* GTK_DISABLE_DEPRECATED */ |