diff options
author | David Robillard <d@drobilla.net> | 2012-04-30 02:04:21 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-04-30 02:04:21 +0000 |
commit | c0059bd2d7673a155efca5cb86e92b8106f12ac5 (patch) | |
tree | 9b572ca3c961d7e1de4720869b484ad31eb966f8 /pugl | |
parent | 3ea652aedce737a12238fb197c8b37a6b0c025bc (diff) | |
download | pugl-c0059bd2d7673a155efca5cb86e92b8106f12ac5.tar.gz pugl-c0059bd2d7673a155efca5cb86e92b8106f12ac5.tar.bz2 pugl-c0059bd2d7673a155efca5cb86e92b8106f12ac5.zip |
Fix missed PuglView changes for Windows.
Diffstat (limited to 'pugl')
-rw-r--r-- | pugl/pugl_win.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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)); |