summaryrefslogtreecommitdiff
path: root/vcl/osx
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2021-02-09 22:43:17 +0100
committerStephan Bergmann <sbergman@redhat.com>2021-02-11 08:19:29 +0100
commit1eb05baf7cffe5ad747f6ab5ba65e07c7a9dcf80 (patch)
treedc5d9d329310e98ddf55d5da988eebd64311c7b5 /vcl/osx
parent14cb12bde07b8becf69b648ecc6642bdccf8a7cd (diff)
Remove unneeded breaks
Extending this: https://gerrit.libreoffice.org/c/core/+/110512 Change-Id: I1066aac690fe297a557352266f3405ae29ed4593 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/110522 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'vcl/osx')
-rw-r--r--vcl/osx/salnativewidgets.cxx4
1 files changed, 0 insertions, 4 deletions
diff --git a/vcl/osx/salnativewidgets.cxx b/vcl/osx/salnativewidgets.cxx
index ff3e5c450edd..606db5ba9a37 100644
--- a/vcl/osx/salnativewidgets.cxx
+++ b/vcl/osx/salnativewidgets.cxx
@@ -76,15 +76,12 @@ static ThemeButtonValue ImplGetButtonValue(ButtonValue aButtonValue)
{
case ButtonValue::On:
return kThemeButtonOn;
- break;
case ButtonValue::Off:
case ButtonValue::DontKnow:
return kThemeButtonOff;
- break;
case ButtonValue::Mixed:
default:
return kThemeButtonMixed;
- break;
}
}
@@ -159,7 +156,6 @@ bool AquaSalGraphics::isNativeControlSupported(ControlType nType, ControlPart nP
break;
case ControlType::SpinButtons:
return false;
- break;
case ControlType::Combobox:
if (nPart == ControlPart::Entire || nPart == ControlPart::HasBackgroundTexture)
return true;