From 3ea652aedce737a12238fb197c8b37a6b0c025bc Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 30 Apr 2012 01:56:23 +0000 Subject: Fix missed PuglView change for OSX. --- pugl/pugl_osx.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pugl/pugl_osx.m') diff --git a/pugl/pugl_osx.m b/pugl/pugl_osx.m index c3dc03b..727022d 100644 --- a/pugl/pugl_osx.m +++ b/pugl/pugl_osx.m @@ -190,14 +190,14 @@ struct PuglPlatformDataImpl { id window; }; -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->width = width; view->height = height; -- cgit v1.2.3