From 7b8329866734a25a723596444ad23a1c4f7dbf9b Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Sat, 17 Jan 2015 19:00:24 +0100 Subject: Some more loplugin:cstylecast: pyuno Change-Id: I80c9fdb45c9f58ac3cd1b0fab2631b903194e268 --- pyuno/source/module/pyuno_callable.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'pyuno/source/module/pyuno_callable.cxx') diff --git a/pyuno/source/module/pyuno_callable.cxx b/pyuno/source/module/pyuno_callable.cxx index 5b1d62feb8e2..b70cc2f81b88 100644 --- a/pyuno/source/module/pyuno_callable.cxx +++ b/pyuno/source/module/pyuno_callable.cxx @@ -53,7 +53,7 @@ void PyUNO_callable_del (PyObject* self) { PyUNO_callable* me; - me = (PyUNO_callable*) self; + me = reinterpret_cast(self); delete me->members; PyObject_Del (self); @@ -71,7 +71,7 @@ PyObject* PyUNO_callable_call( Any any_params; Any ret_value; RuntimeCargo *cargo = 0; - me = (PyUNO_callable*) self; + me = reinterpret_cast(self); PyRef ret; try @@ -255,7 +255,7 @@ PyRef PyUNO_callable_new ( self->members->methodName = methodName; self->members->mode = mode; - return PyRef( (PyObject*)self, SAL_NO_ACQUIRE ); + return PyRef( reinterpret_cast(self), SAL_NO_ACQUIRE ); } } -- cgit