Updated minimum DirectFB version required to enable gdk_directfb_create_child_window()

svn path=/trunk/; revision=17879
This commit is contained in:
Attilio Fiandrotti 2007-05-20 21:51:10 +00:00
parent 4e298601c4
commit ffbf29ea1f
3 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,10 @@
2007-05-20 Attilio Fiandrotti <attilio.fiandrotti@gmail.com>
* gdk/directfb/gdkwindow-directfb.c:
* gdk/directfb/gdkdirectfb.h: Updated minimum DirectFB version
required to enable gdk_directfb_create_child_window.
(Closes: #437379)
2007-05-20 Bastien Nocera <hadess@hadess.net>
* gtk/Makefile.am:

View File

@ -86,7 +86,7 @@ GdkVisual * gdk_directfb_visual_by_format (DFBSurfacePixelFormat pixel_format
IDirectFBWindow *gdk_directfb_window_lookup(GdkWindow *window);
IDirectFBSurface *gdk_directfb_surface_lookup(GdkWindow *window);
#if (DIRECTFB_MICRO_VERSION > 25)
#if (DIRECTFB_MAJOR_VERSION >= 1)
GdkWindow *gdk_directfb_create_child_window(GdkWindow *parent,
IDirectFBSurface *subsurface);
#endif

View File

@ -2521,7 +2521,7 @@ gdk_window_get_frame_extents (GdkWindow *window,
* Given a directfb window and a subsurface of that window
* create a gdkwindow child wrapper
*/
#if (DIRECTFB_MICRO_VERSION > 25)
#if (DIRECTFB_MAJOR_VERSION >= 1)
GdkWindow *gdk_directfb_create_child_window(GdkWindow *parent,
IDirectFBSurface *subsurface)
{