diff options
author | Michael Natterer <mitch@imendio.com> | 2008-06-18 09:39:24 +0000 |
---|---|---|
committer | Michael Natterer <mitch@src.gnome.org> | 2008-06-18 09:39:24 +0000 |
commit | 67c6c28fe04237187645c55195012dbb831955e9 (patch) | |
tree | cbd017552919f705df7381c503cba193ad679c50 /gdk/gdkevents.c | |
parent | fe8a946e876ad50ad70535ab70380c03a4eab58b (diff) | |
download | gtk+-67c6c28fe04237187645c55195012dbb831955e9.tar.gz |
deprecate GdkDestroyNotify.
2008-06-18 Michael Natterer <mitch@imendio.com>
* gdk/gdk.h: deprecate GdkDestroyNotify.
* gdk/gdkevents.c
* gdk/gdktypes.h
* gdk/x11/gdkevents-x11.c
* gtk/gtkmain.c: s/GdkDestroyNotify/GDestroyNotify/g.
svn path=/trunk/; revision=20449
Diffstat (limited to 'gdk/gdkevents.c')
-rw-r--r-- | gdk/gdkevents.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdk/gdkevents.c b/gdk/gdkevents.c index bc0e62a42d..adc6a1b84c 100644 --- a/gdk/gdkevents.c +++ b/gdk/gdkevents.c @@ -37,7 +37,7 @@ struct _GdkIOClosure { GdkInputFunction function; GdkInputCondition condition; - GdkDestroyNotify notify; + GDestroyNotify notify; gpointer data; }; @@ -1020,7 +1020,7 @@ gdk_input_add_full (gint source, GdkInputCondition condition, GdkInputFunction function, gpointer data, - GdkDestroyNotify destroy) + GDestroyNotify destroy) { guint result; GdkIOClosure *closure = g_new (GdkIOClosure, 1); |