From c0059bd2d7673a155efca5cb86e92b8106f12ac5 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 30 Apr 2012 02:04:21 +0000 Subject: Fix missed PuglView changes for Windows. --- pugl/pugl_win.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pugl/pugl_win.cpp') diff --git a/pugl/pugl_win.cpp b/pugl/pugl_win.cpp index f73d9da..f487352 100644 --- a/pugl/pugl_win.cpp +++ b/pugl/pugl_win.cpp @@ -48,14 +48,14 @@ wndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) } } -PuglWindow* +PuglView* puglCreate(PuglNativeWindow parent, const char* title, int width, int height, bool resizable) { - PuglView* view = (PuglWindow*)calloc(1, sizeof(PuglWindow)); + PuglView* view = (PuglView*)calloc(1, sizeof(PuglView)); view->impl = (PuglPlatformData*)calloc(1, sizeof(PuglPlatformData)); -- cgit v1.2.3