summaryrefslogtreecommitdiff
path: root/gdk/gdkevents.c
diff options
context:
space:
mode:
authorMichael Natterer <mitch@imendio.com>2008-06-18 09:39:24 +0000
committerMichael Natterer <mitch@src.gnome.org>2008-06-18 09:39:24 +0000
commit67c6c28fe04237187645c55195012dbb831955e9 (patch)
treecbd017552919f705df7381c503cba193ad679c50 /gdk/gdkevents.c
parentfe8a946e876ad50ad70535ab70380c03a4eab58b (diff)
downloadgtk+-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.c4
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);