diff options
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/osx/salinst.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/osx/salinst.cxx b/vcl/osx/salinst.cxx index 2f061cbbcc13..433aa027f451 100644 --- a/vcl/osx/salinst.cxx +++ b/vcl/osx/salinst.cxx @@ -488,7 +488,7 @@ void AquaSalInstance::handleAppDefinedEvent( NSEvent* pEvent ) switch ([pEvent data1]) { case kRemoteButtonPlay: - nCommand = ( bIsFullScreenMode == true ) ? MEDIA_COMMAND_PLAY_PAUSE : MEDIA_COMMAND_PLAY; + nCommand = bIsFullScreenMode ? MEDIA_COMMAND_PLAY_PAUSE : MEDIA_COMMAND_PLAY; break; // kept for experimentation purpose (scheduled for future implementation) |