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
This commit is contained in:
Michael Natterer
2008-06-18 09:39:24 +00:00
committed by Michael Natterer
parent fe8a946e87
commit 67c6c28fe0
6 changed files with 18 additions and 5 deletions

View File

@ -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);