aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2019-07-21 21:35:25 +0200
committerDavid Robillard <d@drobilla.net>2019-07-21 21:35:25 +0200
commit354f7576876d5c0a00945a5167262827425e4b42 (patch)
treeb2001d33256c3f41e06a272a1c676db042064b8d
parent7a5dcae7932847a1bf2e00264c6eec156ca1c639 (diff)
downloadpugl-354f7576876d5c0a00945a5167262827425e4b42.tar.gz
pugl-354f7576876d5c0a00945a5167262827425e4b42.tar.bz2
pugl-354f7576876d5c0a00945a5167262827425e4b42.zip
Remove redundant and mismatched prototype
-rw-r--r--pugl/pugl_osx.m7
1 files changed, 2 insertions, 5 deletions
diff --git a/pugl/pugl_osx.m b/pugl/pugl_osx.m
index 7a804b7..f3054fd 100644
--- a/pugl/pugl_osx.m
+++ b/pugl/pugl_osx.m
@@ -54,17 +54,14 @@ struct PuglInternalsImpl {
PuglView* puglview;
}
-- (id) initWithContentRect:(NSRect)contentRect
- styleMask:(unsigned int)aStyle
- backing:(NSBackingStoreType)bufferingType
- defer:(BOOL)flag;
- (void) setPuglview:(PuglView*)view;
+
@end
@implementation PuglWindow
- (id) initWithContentRect:(NSRect)contentRect
- styleMask:(unsigned int)aStyle
+ styleMask:(NSWindowStyleMask)aStyle
backing:(NSBackingStoreType)bufferingType
defer:(BOOL)flag
{