summaryrefslogtreecommitdiff
path: root/pyuno/source/module/pyuno.cxx
diff options
context:
space:
mode:
authorLionel Elie Mamane <lionel@mamane.lu>2011-08-20 17:33:37 +0200
committerLionel Elie Mamane <lionel@mamane.lu>2011-08-21 01:46:09 +0200
commit58aa95c94459aec8cb467f3d6ec8ac9491c7a46c (patch)
treec7602c890b3a972d18e5d92d279fcdd0fd76dbc8 /pyuno/source/module/pyuno.cxx
parentd269a182506cad8f11e9631229d4dc20f5e33abe (diff)
Janitorial: remove unnecessary const_casts
The python C API has consts at these places
Diffstat (limited to 'pyuno/source/module/pyuno.cxx')
-rw-r--r--pyuno/source/module/pyuno.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/pyuno/source/module/pyuno.cxx b/pyuno/source/module/pyuno.cxx
index 2df863dabe5b..2bfbe7b64002 100644
--- a/pyuno/source/module/pyuno.cxx
+++ b/pyuno/source/module/pyuno.cxx
@@ -373,7 +373,7 @@ PyObject *PyUNO_invoke( PyObject *object, const char *name , PyObject *args )
if( PyObject_IsInstance( element , getAnyClass( runtime ).get() ) )
{
element = PyObject_GetAttrString(
- element, const_cast< char * >("value") );
+ element, "value" );
}
else
{
@@ -647,7 +647,7 @@ static PyObject* PyUNO_cmp( PyObject *self, PyObject *that, int op )
static PyTypeObject PyUNOType =
{
PyVarObject_HEAD_INIT( &PyType_Type, 0 )
- const_cast< char * >("pyuno"),
+ "pyuno",
sizeof (PyUNO),
0,
(destructor) PyUNO_del,