summaryrefslogtreecommitdiff
path: root/pyuno
diff options
context:
space:
mode:
authorHans-Joachim Lankenau <hjs@openoffice.org>2003-08-18 14:01:22 +0000
committerHans-Joachim Lankenau <hjs@openoffice.org>2003-08-18 14:01:22 +0000
commit886759084d96beb15231f43cc77b0f9b5387844b (patch)
tree7decea8cd28a66745aced7531f173eea0f040b02 /pyuno
parent0bde3353b1f9da3471b143e24283eed8c6fdee1d (diff)
INTEGRATION: CWS geordi2q01 (1.2.14); FILE MERGED
2003/08/18 13:04:06 hr 1.2.14.1: #i18350#: join changes from CWS ooo11rc3
Diffstat (limited to 'pyuno')
-rw-r--r--pyuno/source/module/pyuno_callable.cxx7
1 files changed, 5 insertions, 2 deletions
diff --git a/pyuno/source/module/pyuno_callable.cxx b/pyuno/source/module/pyuno_callable.cxx
index 71f1429d7204..67088a11874d 100644
--- a/pyuno/source/module/pyuno_callable.cxx
+++ b/pyuno/source/module/pyuno_callable.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: pyuno_callable.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: jbu $ $Date: 2003-05-24 23:27:40 $
+ * last change: $Author: hjs $ $Date: 2003-08-18 15:01:22 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -156,7 +156,10 @@ PyObject* PyUNO_callable_call (PyObject* self, PyObject* args, PyObject* kwords)
// initialize with defaults in case of exceptions
int i;
for( i = 1 ; i < 1+aOutParam.getLength() ; i ++ )
+ {
+ Py_INCREF( Py_None );
PyTuple_SetItem( return_list.get() , i , Py_None );
+ }
for( i = 0 ; i < aOutParam.getLength() ; i ++ )
{