diff options
author | Noel Grandin <noel@peralex.com> | 2014-02-11 13:37:41 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-02-12 08:59:05 +0200 |
commit | 25c1e9cca2e43e84e11122cf3175bec76fa58934 (patch) | |
tree | 5d8b5a7a5bf0d515737263bfd374b89d7aee60a9 | |
parent | 28820607754239b9344c858dcad5f71a0aa85abe (diff) |
cid#705176 missing break in switch
Change-Id: Iaa331cc259aed93ffa7c3544586f800a795cc25d
-rw-r--r-- | framework/source/uiconfiguration/windowstateconfiguration.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/framework/source/uiconfiguration/windowstateconfiguration.cxx b/framework/source/uiconfiguration/windowstateconfiguration.cxx index a0c306025111..f825e9d16e68 100644 --- a/framework/source/uiconfiguration/windowstateconfiguration.cxx +++ b/framework/source/uiconfiguration/windowstateconfiguration.cxx @@ -944,6 +944,7 @@ ConfigurationAccess_WindowState::WindowStateInfo& ConfigurationAccess_WindowStat aWindowStateInfo.nStyle = sal_uInt16( nValue ); } } + break; default: DBG_ASSERT( false, "Wrong value for ConfigurationAccess_WindowState. Who has forgotten to add this new property!" ); |