diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-05-12 09:06:59 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-05-12 09:06:59 +0200 |
commit | e1ebdf38969a17af9453f674c81663187411597d (patch) | |
tree | aacceb94f9090d33705d603efec498c397f2079f /oox | |
parent | 4c665178f49952138835fd318edef8978ac806e3 (diff) |
loplugin:cstylecast
Change-Id: I1c0f16d4f68013f126a52976d4ff9f7dde9f3eaf
Diffstat (limited to 'oox')
-rw-r--r-- | oox/source/export/drawingml.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/export/drawingml.cxx b/oox/source/export/drawingml.cxx index e7bea03d17af..2287fdff8dda 100644 --- a/oox/source/export/drawingml.cxx +++ b/oox/source/export/drawingml.cxx @@ -1671,7 +1671,7 @@ void DrawingML::WriteParagraphNumbering( Reference< XPropertySet > rXPropSet, sa } else if(aPropName == "BulletColor") { - nBulletColor = *( (sal_Int32*)pValue ); + nBulletColor = *static_cast<sal_Int32 const *>(pValue); } else if ( aPropName == "BulletChar" ) { |