summaryrefslogtreecommitdiff
path: root/pyuno/source/module/pyuno_except.cxx
diff options
context:
space:
mode:
authorHans-Joachim Lankenau <hjs@openoffice.org>2003-08-18 14:01:33 +0000
committerHans-Joachim Lankenau <hjs@openoffice.org>2003-08-18 14:01:33 +0000
commitc1d933aca8e4b574c9cc0f1b0e0f0640915ad828 (patch)
tree4f667de9d7a525e537ceebf884ce240a7a661390 /pyuno/source/module/pyuno_except.cxx
parent886759084d96beb15231f43cc77b0f9b5387844b (diff)
INTEGRATION: CWS geordi2q01 (1.1.14); FILE MERGED
2003/08/18 13:04:06 hr 1.1.14.1: #i18350#: join changes from CWS ooo11rc3
Diffstat (limited to 'pyuno/source/module/pyuno_except.cxx')
-rw-r--r--pyuno/source/module/pyuno_except.cxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/pyuno/source/module/pyuno_except.cxx b/pyuno/source/module/pyuno_except.cxx
index 17bec3a53a8b..05147434617f 100644
--- a/pyuno/source/module/pyuno_except.cxx
+++ b/pyuno/source/module/pyuno_except.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: pyuno_except.cxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: jbu $ $Date: 2003-03-23 12:12:57 $
+ * last change: $Author: hjs $ $Date: 2003-08-18 15:01:33 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -185,7 +185,9 @@ static PyRef createClass( const OUString & name, const Runtime &runtime )
PyRef bases;
if( base.is() )
{
+ { // for CC, keeping ref-count being 1
bases = PyRef( PyTuple_New( 1 ), SAL_NO_ACQUIRE );
+ }
PyTuple_SetItem( bases.get(), 0 , base.getAcquired() );
}
else