diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-05-30 13:09:28 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-05-30 14:19:09 +0100 |
commit | 87574542fc953a60bc2bafe8ed725500f9322521 (patch) | |
tree | faf700a9df4ea0906bda1b165a36013ca31d59d6 /sw | |
parent | 580fe11522da7691c2bb6901554c95516679df01 (diff) |
coverity#736074 Missing break in switch
Change-Id: Ie60f70e992323b9841c854edc083f686bbeda1f5
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/uibase/uno/SwXDocumentSettings.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sw/source/uibase/uno/SwXDocumentSettings.cxx b/sw/source/uibase/uno/SwXDocumentSettings.cxx index a9cfec80d3b3..d9ea5adf870d 100644 --- a/sw/source/uibase/uno/SwXDocumentSettings.cxx +++ b/sw/source/uibase/uno/SwXDocumentSettings.cxx @@ -777,6 +777,7 @@ void SwXDocumentSettings::_setSingleValue( const comphelper::PropertyInfo & rInf bool bTmp = *(sal_Bool*)rValue.getValue(); mpDoc->set(IDocumentSettingAccess::EMBED_FONTS, bTmp); } + break; case HANDLE_EMBED_SYSTEM_FONTS: { bool bTmp = *(sal_Bool*)rValue.getValue(); |