diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-10-13 10:57:03 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-10-13 13:15:01 +0200 |
commit | 7a169c11be07f651330cf540aa1579534761be0b (patch) | |
tree | 0fdca3a05f5ded325952f67144f9a51a80ac940d | |
parent | 2ca4748a2e04b37c18f6f572bcf323cd857fef34 (diff) |
Read this MSO_Anchor value as a sal_uInt32 too
...for consistency with 0fad62c2178d6b8157b07ff30fe9e2fc8173d393
"-fsanitize=enum"
Change-Id: I96e2a791811b5f45735d2ccb0686bcc12fe9a5a2
-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 fe39cb8090af..c9ba7586531a 100644 --- a/filter/source/msfilter/msdffimp.cxx +++ b/filter/source/msfilter/msdffimp.cxx @@ -1428,7 +1428,7 @@ void DffPropertyReader::ApplyCustomShapeTextAttributes( SfxItemSet& rSet ) const eTHA = SDRTEXTHORZADJUST_CENTER; // read text anchor - MSO_Anchor eTextAnchor = (MSO_Anchor)GetPropertyValue( DFF_Prop_anchorText, mso_anchorTop ); + sal_uInt32 eTextAnchor = GetPropertyValue( DFF_Prop_anchorText, mso_anchorTop ); switch( eTextAnchor ) { |