GDK Deprecated Functions used internally
Brought to you by:
mgaertner
Deprecated functions are used in GDK which prevent
compiling with GDK_DISABLE_DEPRECATED, mostly these are
simple things, namely use of GDK_DRAWABLE_REF/UNREF in
window and pixbuf instead of g_object_ref/unref, and
one such in GdkGC ex.
procedure gdk_window_unref(drawable:PGdkDrawable);
begin
gdk_drawable_unref(drawable);
end;
vs.
procedure gdk_window_unref(drawable:PGdkDrawable);
begin
g_object_unref(G_OBJECT(drawable));
end;
all in all I think only around 10 or so like this exist.