Fixed bug 342091

This commit is contained in:
Michael David Emmel 2006-05-18 07:46:06 +00:00
parent 17f27fc39c
commit bc0f858deb
3 changed files with 18 additions and 0 deletions

View File

@ -1,3 +1,9 @@
2006-06-18 Michael Emmel <mike.emmel@gmail.com>
* gdk/directfb/gdkscreen-directfb.c:
* added gdk_screen_is_composited to compile
* Bug 342091
2006-05-17 Alexander Larsson <alexl@redhat.com>
* gtk/gtkprintoperation-win32.c:

View File

@ -1,3 +1,9 @@
2006-06-18 Michael Emmel <mike.emmel@gmail.com>
* gdk/directfb/gdkscreen-directfb.c:
* added gdk_screen_is_composited to compile
* Bug 342091
2006-05-17 Alexander Larsson <alexl@redhat.com>
* gtk/gtkprintoperation-win32.c:

View File

@ -212,6 +212,12 @@ gdk_screen_get_window_stack (GdkScreen *screen)
return NULL;
}
gboolean
gdk_screen_is_composited (GdkScreen *screen)
{
g_return_val_if_fail (GDK_IS_SCREEN (screen), NULL);
return FALSE;
}
#define __GDK_SCREEN_X11_C__
#include "gdkaliasdef.c"