Fixes build failure on Mac OS X 10.10 Yosemite Beta due to highgui/src/window_cocoa.mm (Bug #3737)

This commit is contained in:
Mike Maraya 2014-06-27 08:02:01 -04:00
parent fbac578c79
commit 56683e6d11

View File

@ -151,7 +151,7 @@ CV_IMPL int cvInitSystem( int , char** )
#define NSAppKitVersionNumber10_5 949 #define NSAppKitVersionNumber10_5 949
#endif #endif
if( floor(NSAppKitVersionNumber) > NSAppKitVersionNumber10_5 ) if( floor(NSAppKitVersionNumber) > NSAppKitVersionNumber10_5 )
[application setActivationPolicy:0/*NSApplicationActivationPolicyRegular*/]; [application setActivationPolicy:NSApplicationActivationPolicyRegular];
#endif #endif
//[application finishLaunching]; //[application finishLaunching];
//atexit(icvCocoaCleanup); //atexit(icvCocoaCleanup);