diff options
author | Tor Lillqvist <tml@iki.fi> | 2012-04-23 18:12:36 +0300 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@suse.com> | 2012-04-24 12:22:25 +0300 |
commit | 2c0731adc872a3ab73de929afcb5ee9c13417ca1 (patch) | |
tree | 3610fb29efccc2f17193c22f68b060e83d96a0f2 | |
parent | 8376b5e0000e8318e108e9eeab82b7acb2cd586d (diff) |
WaE: incompatible pointer types
-rw-r--r-- | vcl/aqua/source/window/salframeview.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/aqua/source/window/salframeview.mm b/vcl/aqua/source/window/salframeview.mm index 3a97372e30ab..86e3dc4d8549 100644 --- a/vcl/aqua/source/window/salframeview.mm +++ b/vcl/aqua/source/window/salframeview.mm @@ -157,7 +157,7 @@ static AquaSalFrame* getMouseContainerFrame() pFrame->VCLToCocoa( aRect ); NSWindow* pNSWindow = [super initWithContentRect: aRect styleMask: mpFrame->getStyleMask() backing: NSBackingStoreBuffered defer: NO ]; [pNSWindow useOptimizedDrawing: YES]; // OSX recommendation when there are no overlapping subviews within the receiver - return pNSWindow; + return (SalFrameWindow *) pNSWindow; } -(AquaSalFrame*)getSalFrame |