diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2021-02-07 21:47:10 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2021-02-10 08:52:11 +0100 |
commit | 974dc88a06603f2f119f603c2581870e4e7ea7bc (patch) | |
tree | 20b770880325ab77032f95409fb97b9e58597710 /cui | |
parent | b7189e1a9aef85ac2e3423cc4c136d97ebf0a58b (diff) |
Remove unneeded breaks
Extending this:
https://gerrit.libreoffice.org/c/core/+/110512
Change-Id: If7e6f9c4079c2e0b48e642aa0b140fb4e03996bf
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/110520
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/customize/CustomNotebookbarGenerator.cxx | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/cui/source/customize/CustomNotebookbarGenerator.cxx b/cui/source/customize/CustomNotebookbarGenerator.cxx index 365c7f9f00d5..392ea3e37a4e 100644 --- a/cui/source/customize/CustomNotebookbarGenerator.cxx +++ b/cui/source/customize/CustomNotebookbarGenerator.cxx @@ -42,19 +42,14 @@ static OUString lcl_activeAppName(vcl::EnumContext::Application eApp) { case vcl::EnumContext::Application::Writer: return "ActiveWriter"; - break; case vcl::EnumContext::Application::Calc: return "ActiveCalc"; - break; case vcl::EnumContext::Application::Impress: return "ActiveImpress"; - break; case vcl::EnumContext::Application::Draw: return "ActiveDraw"; - break; default: return OUString(); - break; } } @@ -64,19 +59,14 @@ static OUString lcl_getAppName(vcl::EnumContext::Application eApp) { case vcl::EnumContext::Application::Writer: return "Writer"; - break; case vcl::EnumContext::Application::Calc: return "Calc"; - break; case vcl::EnumContext::Application::Impress: return "Impress"; - break; case vcl::EnumContext::Application::Draw: return "Draw"; - break; default: return OUString(); - break; } } |