summaryrefslogtreecommitdiff
path: root/pugl/pugl_internal.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-05-11 22:34:48 +0000
committerDavid Robillard <d@drobilla.net>2012-05-11 22:34:48 +0000
commit53f8f81e2742876c8192b9429c4d4d20e9722b8b (patch)
tree667720fb6c5f8b1dba3a64b38eb1f030687b43a8 /pugl/pugl_internal.h
parentc5cf34948acafc7ecb22e481fd513c62111bbc0f (diff)
Fix memory leaks.
Diffstat (limited to 'pugl/pugl_internal.h')
-rw-r--r--pugl/pugl_internal.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/pugl/pugl_internal.h b/pugl/pugl_internal.h
index 981c0fb..15e2f0a 100644
--- a/pugl/pugl_internal.h
+++ b/pugl/pugl_internal.h
@@ -24,7 +24,7 @@
#include "pugl.h"
-typedef struct PuglPlatformDataImpl PuglPlatformData;
+typedef struct PuglInternalsImpl PuglInternals;
struct PuglViewImpl {
PuglHandle handle;
@@ -37,7 +37,7 @@ struct PuglViewImpl {
PuglScrollFunc scrollFunc;
PuglSpecialFunc specialFunc;
- PuglPlatformData* impl;
+ PuglInternals* impl;
int width;
int height;