mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-05 16:20:10 +00:00
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:
parent
0bee9a840f
commit
6241f4ef21
@ -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:
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user