diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-05-29 12:04:51 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-05-29 12:04:51 +0200 |
commit | 58389480b74ccb181d2c14a3e74bc173ff30f997 (patch) | |
tree | 57060641fb66074f40d302ebe8646415271f3ebf | |
parent | 8332862a3669b40b00a6bd53f6ba489bfd9f510b (diff) |
loplugin:redundantcast: const_cast to same type
Change-Id: Ifced01f17de220d430bb9d51d1fdc67242efcff8
-rw-r--r-- | svtools/source/graphic/provider.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svtools/source/graphic/provider.cxx b/svtools/source/graphic/provider.cxx index 7a5bda77d247..afca9bc366a0 100644 --- a/svtools/source/graphic/provider.cxx +++ b/svtools/source/graphic/provider.cxx @@ -653,7 +653,7 @@ void ImplApplyFilterData( ::Graphic& rGraphic, uno::Sequence< beans::PropertyVal // only optimizing common bitmap actions: case( MetaActionType::MAPMODE ): { - const_cast< MetaAction* >( pAction )->Execute( aDummyVDev.get() ); + pAction->Execute( aDummyVDev.get() ); break; } case( MetaActionType::PUSH ): |