summaryrefslogtreecommitdiff
path: root/py/modules/IcePy/ObjectAdapter.cpp
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2009-09-03 14:03:30 -0700
committerMark Spruiell <mes@zeroc.com>2009-09-03 14:03:30 -0700
commitee4f02ccf6e41d1c453c124c7623f742c56b306e (patch)
tree797d2a2ba25d60f85a0fb503f64c959bb2ce9872 /py/modules/IcePy/ObjectAdapter.cpp
parentPartial fix for 4210 - Update to latest Berkeley DB 4.7.25 (diff)
downloadice-ee4f02ccf6e41d1c453c124c7623f742c56b306e.tar.bz2
ice-ee4f02ccf6e41d1c453c124c7623f742c56b306e.tar.xz
ice-ee4f02ccf6e41d1c453c124c7623f742c56b306e.zip
bug 4229 - generate Python docstrings
Diffstat (limited to 'py/modules/IcePy/ObjectAdapter.cpp')
-rw-r--r--py/modules/IcePy/ObjectAdapter.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/py/modules/IcePy/ObjectAdapter.cpp b/py/modules/IcePy/ObjectAdapter.cpp
index 50cc46c5a7a..c5653e11bdc 100644
--- a/py/modules/IcePy/ObjectAdapter.cpp
+++ b/py/modules/IcePy/ObjectAdapter.cpp
@@ -642,7 +642,7 @@ adapterAdd(ObjectAdapterObject* self, PyObject* args)
return 0;
}
- ServantWrapperPtr wrapper= createServantWrapper(servant);
+ ServantWrapperPtr wrapper = createServantWrapper(servant);
if(PyErr_Occurred())
{
return 0;
@@ -685,7 +685,7 @@ adapterAddFacet(ObjectAdapterObject* self, PyObject* args)
return 0;
}
- ServantWrapperPtr wrapper= createServantWrapper(servant);
+ ServantWrapperPtr wrapper = createServantWrapper(servant);
if(PyErr_Occurred())
{
return 0;
@@ -725,7 +725,7 @@ adapterAddWithUUID(ObjectAdapterObject* self, PyObject* args)
return 0;
}
- ServantWrapperPtr wrapper= createServantWrapper(servant);
+ ServantWrapperPtr wrapper = createServantWrapper(servant);
if(PyErr_Occurred())
{
return 0;
@@ -760,7 +760,7 @@ adapterAddFacetWithUUID(ObjectAdapterObject* self, PyObject* args)
return 0;
}
- ServantWrapperPtr wrapper= createServantWrapper(servant);
+ ServantWrapperPtr wrapper = createServantWrapper(servant);
if(PyErr_Occurred())
{
return 0;
@@ -801,7 +801,7 @@ adapterAddDefaultServant(ObjectAdapterObject* self, PyObject* args)
return 0;
}
- ServantWrapperPtr wrapper= createServantWrapper(servant);
+ ServantWrapperPtr wrapper = createServantWrapper(servant);
if(PyErr_Occurred())
{
return 0;