diff options
author | Caolán McNamara <caolanm@redhat.com> | 2020-06-24 12:12:15 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2020-06-24 15:59:43 +0200 |
commit | 0c34e7b8b1fe394e8f730c13bfa31e5f8000d095 (patch) | |
tree | 9622911b5d9e1747746a4bc05c9dc983758e7645 | |
parent | 87592cc76a53374a7b177cdba65bc529e0203816 (diff) |
ofz#23684 Invalid-enum-value
Change-Id: Ie92b336adcf3734352c02742cf0eb249cfec774b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/97023
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
-rw-r--r-- | filter/source/msfilter/msdffimp.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/filter/source/msfilter/msdffimp.cxx b/filter/source/msfilter/msdffimp.cxx index e15ad6d209c8..aafb9d10755a 100644 --- a/filter/source/msfilter/msdffimp.cxx +++ b/filter/source/msfilter/msdffimp.cxx @@ -3764,7 +3764,7 @@ SdrObject* SvxMSDffManager::ImportGraphic( SvStream& rSt, SfxItemSet& rSet, cons OUString aLinkFileName, aLinkFilterName; tools::Rectangle aVisArea; - MSO_BlipFlags eFlags = static_cast<MSO_BlipFlags>(GetPropertyValue( DFF_Prop_pibFlags, mso_blipflagDefault )); + auto eFlags = GetPropertyValue(DFF_Prop_pibFlags, mso_blipflagDefault); sal_uInt32 nBlipId = GetPropertyValue( DFF_Prop_pib, 0 ); bool bGrfRead = false, |