diff options
author | Noel Grandin <noel@peralex.com> | 2014-02-11 14:22:39 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-02-12 08:59:06 +0200 |
commit | 5c046a008345e35941271a25fd0995bf01c30c3b (patch) | |
tree | 2d30b90efcb59a4d4a21b687c0c660db6a38dda2 /sfx2 | |
parent | 49ba7d0e6572a021566f7f11838213f530be7a16 (diff) |
cid#705226 missing break in switch
Change-Id: Id9457d2e7a6778fee9fa5ec32d2bb97cb8b7d296
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/appl/appcfg.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sfx2/source/appl/appcfg.cxx b/sfx2/source/appl/appcfg.cxx index fbf0f5b799d3..58c845635ca2 100644 --- a/sfx2/source/appl/appcfg.cxx +++ b/sfx2/source/appl/appcfg.cxx @@ -478,6 +478,7 @@ sal_Bool SfxApplication::GetOptions( SfxItemSet& rSet ) if ( rSet.Put(aNames) || rSet.Put(aValues) ) bRet = sal_True; } + break; default: DBG_WARNING( "W1:Wrong ID while getting Options!" ); |