From 91ace65caedbde4216ba59aa5aa8ef185baefef1 Mon Sep 17 00:00:00 2001 From: Neil Roberts Date: Sun, 31 Jul 2011 18:00:43 +0100 Subject: [PATCH] clutter-stage-win32: Fix name cogl_win32_onscreen_set_foreign_window Since commit 38b67e2884f of Cogl the naming scheme for winsys-specific API has changed to be cogl_win32_onscreen_* instead of cogl_onscreen_win32_* so it wouldn't build on Windows. --- clutter/win32/clutter-stage-win32.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clutter/win32/clutter-stage-win32.c b/clutter/win32/clutter-stage-win32.c index 0cdeae979..9ed74ed2d 100644 --- a/clutter/win32/clutter-stage-win32.c +++ b/clutter/win32/clutter-stage-win32.c @@ -467,7 +467,7 @@ clutter_stage_win32_realize (ClutterStageWindow *stage_window) SetWindowLongPtrW (stage_win32->hwnd, 0, (LONG_PTR) stage_win32); } - cogl_onscreen_win32_set_foreign_window (stage_win32->onscreen, + cogl_win32_onscreen_set_foreign_window (stage_win32->onscreen, stage_win32->hwnd); clutter_vblank = _clutter_backend_win32_get_vblank ();