diff options
Diffstat (limited to 'vcl/osx/salmenu.cxx')
-rw-r--r-- | vcl/osx/salmenu.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/osx/salmenu.cxx b/vcl/osx/salmenu.cxx index 57bc23f7add2..8c6006f549ba 100644 --- a/vcl/osx/salmenu.cxx +++ b/vcl/osx/salmenu.cxx @@ -526,11 +526,11 @@ bool AquaSalMenu::VisibleMenuBar() static const char *pExperimental = getenv ("AQUA_NATIVE_MENUS"); if ( pExperimental && !strcasecmp(pExperimental, "FALSE") ) - return sal_False; + return false; // End of experimental code enable/disable part - return sal_True; + return true; } void AquaSalMenu::SetFrame( const SalFrame *pFrame ) |