Add stub for quartz for fix build.

2007-12-20  Richard Hult  <richard@imendio.com>

	* modules/other/gail/gailwindow.c: (gail_window_get_mdi_zorder):
	Add stub for quartz for fix build.

svn path=/trunk/; revision=19204
This commit is contained in:
Richard Hult 2007-12-20 12:21:51 +00:00 committed by Richard Hult
parent 0bee9a840f
commit 6241f4ef21
2 changed files with 22 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2007-12-20 Richard Hult <richard@imendio.com>
* modules/other/gail/gailwindow.c: (gail_window_get_mdi_zorder):
Add stub for quartz for fix build.
2007-12-20 Christian Persch <chpe@gnome.org>
* modules/other/gail/Makefile.am:

View File

@ -1090,5 +1090,21 @@ gail_window_get_mdi_zorder (AtkComponent *component)
}
#else
#error Port to this GDK backend
static gint
gail_window_get_mdi_zorder (AtkComponent *component)
{
GtkWidget *widget = GTK_ACCESSIBLE (component)->widget;
if (widget == NULL)
/*
* State is defunct
*/
return -1;
gail_return_val_if_fail (GTK_IS_WINDOW (widget), -1);
return 0; /* Punt, FIXME */
}
#endif