From 12e50114883c21a2f9a0db48e53020532dffa936 Mon Sep 17 00:00:00 2001 From: Roman Kudiyarov Date: Thu, 15 Jul 2010 16:27:16 +0700 Subject: [PATCH] osx: Added missed function declaration for stage Added empty functions for cursor and window resize functional with notes FIXME and also they are added to iface. --- clutter/osx/clutter-stage-osx.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/clutter/osx/clutter-stage-osx.c b/clutter/osx/clutter-stage-osx.c index 6168fd6d3..8207f0a0d 100644 --- a/clutter/osx/clutter-stage-osx.c +++ b/clutter/osx/clutter-stage-osx.c @@ -475,6 +475,19 @@ clutter_stage_osx_set_fullscreen (ClutterStageWindow *stage_window, CLUTTER_OSX_POOL_RELEASE(); } +static void +clutter_stage_osx_set_cursor_visible (ClutterStageWindow *stage_window, + gboolean cursor_visible) +{ + ;/* FIXME */ +} + +static void +clutter_stage_osx_set_user_resizable (ClutterStageWindow *stage_window, + gboolean is_resizable) +{ + ;/* FIXME */ +} static void clutter_stage_window_iface_init (ClutterStageWindowIface *iface) @@ -488,6 +501,8 @@ clutter_stage_window_iface_init (ClutterStageWindowIface *iface) iface->unrealize = clutter_stage_osx_unrealize; iface->get_geometry = clutter_stage_osx_get_geometry; iface->resize = clutter_stage_osx_resize; + iface->set_cursor_visible = clutter_stage_osx_set_cursor_visible; + iface->set_user_resizable = clutter_stage_osx_set_user_resizable; } /*************************************************************************/