summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-04-30 02:04:21 +0000
committerDavid Robillard <d@drobilla.net>2012-04-30 02:04:21 +0000
commitc0059bd2d7673a155efca5cb86e92b8106f12ac5 (patch)
tree9b572ca3c961d7e1de4720869b484ad31eb966f8
parent3ea652aedce737a12238fb197c8b37a6b0c025bc (diff)
Fix missed PuglView changes for Windows.
-rw-r--r--pugl/pugl_win.cpp4
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));