diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-07-08 16:40:20 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-07-08 16:47:31 +0200 |
commit | 85185f8884278ace3024d38ac16739bf637eae1b (patch) | |
tree | 06324af30fc7c691db8ee93ff7172d6ba9be8f15 /sd/source/ui/app/sdxfer.cxx | |
parent | 23cae677a4ad05ca3ca6b39ab30e11ae3c403378 (diff) |
loplugin:redundantcast: redundant static_casts in sd
Change-Id: I843ca15d3515273bd78bf9f111974f9be5252549
Diffstat (limited to 'sd/source/ui/app/sdxfer.cxx')
-rw-r--r-- | sd/source/ui/app/sdxfer.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/ui/app/sdxfer.cxx b/sd/source/ui/app/sdxfer.cxx index 835434c049f0..2091166dacd2 100644 --- a/sd/source/ui/app/sdxfer.cxx +++ b/sd/source/ui/app/sdxfer.cxx @@ -246,7 +246,7 @@ void SdTransferable::CreateObjectReplacement( SdrObject* pObj ) } } - SdIMapInfo* pInfo = static_cast< SdDrawDocument* >( pObj->GetModel() )->GetIMapInfo( static_cast< SdrObject* >( pObj ) ); + SdIMapInfo* pInfo = static_cast< SdDrawDocument* >( pObj->GetModel() )->GetIMapInfo( pObj ); if( pInfo ) mpImageMap = new ImageMap( pInfo->GetImageMap() ); |