summaryrefslogtreecommitdiff
path: root/svx/source/unodraw/unoshap4.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-01-18 21:35:16 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-01-20 09:06:52 +0100
commit19ae20096aa1c35217753ffd3d903364047834ff (patch)
tree53e9f670342c8e234a39db9cd98e140645dc7f3b /svx/source/unodraw/unoshap4.cxx
parent950028c6e3b20ee686e47fdf990de89377aaf92a (diff)
Some more loplugin:cstylecast: svx
Change-Id: I5eb4e1cae38decb293ea11f7cd4bfda0bad3afcb
Diffstat (limited to 'svx/source/unodraw/unoshap4.cxx')
-rw-r--r--svx/source/unodraw/unoshap4.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/unodraw/unoshap4.cxx b/svx/source/unodraw/unoshap4.cxx
index 75f88469a119..9f07d79327cf 100644
--- a/svx/source/unodraw/unoshap4.cxx
+++ b/svx/source/unodraw/unoshap4.cxx
@@ -238,7 +238,7 @@ bool SvxOle2Shape::getPropertyValueImpl( const OUString& rName, const SfxItemPro
if ( aLnk.GetType() == GFX_LINK_TYPE_NATIVE_WMF )
{
bIsWMF = true;
- uno::Sequence<sal_Int8> aSeq((sal_Int8*)aLnk.GetData(), (sal_Int32) aLnk.GetDataSize());
+ uno::Sequence<sal_Int8> aSeq(reinterpret_cast<sal_Int8 const *>(aLnk.GetData()), (sal_Int32) aLnk.GetDataSize());
rValue <<= aSeq;
}
}