diff options
author | Hans-Joachim Lankenau <hjs@openoffice.org> | 2003-08-18 14:01:22 +0000 |
---|---|---|
committer | Hans-Joachim Lankenau <hjs@openoffice.org> | 2003-08-18 14:01:22 +0000 |
commit | 199c21266dc39bbe9eb5ba585a01fe1330ad868d (patch) | |
tree | c73c086cdc7bd6220067e8b0cca135fcdce0119e | |
parent | 70b74872d9444e8bdbfd1a61e79c901cbc750c51 (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
-rw-r--r-- | pyuno/source/module/pyuno_callable.cxx | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/pyuno/source/module/pyuno_callable.cxx b/pyuno/source/module/pyuno_callable.cxx index 21ce95b1a..9e306bcfc 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 ++ ) { |