summaryrefslogtreecommitdiff
path: root/xmloff
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-06-02 11:28:56 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-06-02 11:28:56 +0200
commit0fded753c787c9e0e374bf65fe5c53538adda206 (patch)
tree25ee3c673df4dd8a543f88b9932d7012421d15ea /xmloff
parentc56a8863cde2ccd96dc6b75ad2c7d208c8190414 (diff)
loplugin:cstylecast: deal with those that are (technically) const_cast
Change-Id: Idd4f5a66667e2c13d2cb691960cfd1f568310674
Diffstat (limited to 'xmloff')
-rw-r--r--xmloff/source/draw/ximp3dscene.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmloff/source/draw/ximp3dscene.cxx b/xmloff/source/draw/ximp3dscene.cxx
index ad3ac71e40fc..72055e95c7f6 100644
--- a/xmloff/source/draw/ximp3dscene.cxx
+++ b/xmloff/source/draw/ximp3dscene.cxx
@@ -379,7 +379,7 @@ void SdXML3DSceneAttributesHelper::setSceneAttributes( const com::sun::star::uno
// set lights
for( size_t a = 0; a < maList.size(); a++)
{
- SdXML3DLightContext* pCtx = (SdXML3DLightContext*)maList[ a ];
+ SdXML3DLightContext* pCtx = maList[ a ];
// set anys
aAny <<= pCtx->GetDiffuseColor();