diff options
author | Herbert Dürr <hdu@apache.org> | 2012-12-18 15:28:31 +0000 |
---|---|---|
committer | Herbert Dürr <hdu@apache.org> | 2012-12-18 15:28:31 +0000 |
commit | 1a699e625158cd44c8af069bee63ebd9fd6e0f3d (patch) | |
tree | 12eddc227fd50919308080a0e725d7610ed8f5b3 /vcl | |
parent | 88363bd6ddcd91c0f36131ad33f76b6e1791e4bf (diff) |
#i121406# remove willEnter/willExit-FullScreen methods until they become more useful
Notes
Notes:
merged as: 41d2036bee3279928903cdada115d3e3cd022a06
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/aqua/source/window/salframeview.mm | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/vcl/aqua/source/window/salframeview.mm b/vcl/aqua/source/window/salframeview.mm index 30937e3bf38a..d82cc2df77aa 100644 --- a/vcl/aqua/source/window/salframeview.mm +++ b/vcl/aqua/source/window/salframeview.mm @@ -343,30 +343,6 @@ static AquaSalFrame* getMouseContainerFrame() return bRet; } -#if 0 // windowWillEnterFullScreen doesn't do anything useful yet --(void)windowWillEnterFullScreen: (NSNotification*)pNotification -{ - YIELD_GUARD; - - if( !mpFrame || !AquaSalFrame::isAlive( mpFrame ) ) - return; - // TODO: implement something useful - (void)pNotification; -} -#endif - -#if 0 // windowWillExitFullScreen doesn't do anything useful yet --(void)windowWillExitFullScreen: (NSNotification*)pNotification -{ - YIELD_GUARD; - - if( !mpFrame || !AquaSalFrame::isAlive( mpFrame ) ) - return; - // TODO: implement something useful - (void)pNotification; -} -#endif - -(void)windowDidEnterFullScreen: (NSNotification*)pNotification { YIELD_GUARD; |