summaryrefslogtreecommitdiff
path: root/pyuno
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2006-11-21 16:39:42 +0000
committerVladimir Glazounov <vg@openoffice.org>2006-11-21 16:39:42 +0000
commit34f67a45b190aafef72d50073b12e3f0a2a31a02 (patch)
tree467c7de1aed461da89bc2187c684bbae68f1d61e /pyuno
parentef16933affc6fb97f1bff5d7ae0400bc67eed93a (diff)
INTEGRATION: CWS pj65 (1.15.6); FILE MERGED
2006/10/31 13:55:56 pjanik 1.15.6.1: #i71027#: prevent warnings on Mac OS X with gcc 4.0.1.
Diffstat (limited to 'pyuno')
-rw-r--r--pyuno/source/module/pyuno_runtime.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/pyuno/source/module/pyuno_runtime.cxx b/pyuno/source/module/pyuno_runtime.cxx
index a6dc025f5358..bf272590d9e4 100644
--- a/pyuno/source/module/pyuno_runtime.cxx
+++ b/pyuno/source/module/pyuno_runtime.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: pyuno_runtime.cxx,v $
*
- * $Revision: 1.16 $
+ * $Revision: 1.17 $
*
- * last change: $Author: ihi $ $Date: 2006-11-14 18:21:46 $
+ * last change: $Author: vg $ $Date: 2006-11-21 17:39:42 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -445,7 +445,7 @@ PyRef Runtime::any2PyObject (const Any &a ) const
case typelib_TypeClass_UNSIGNED_SHORT:
case typelib_TypeClass_LONG:
{
- sal_Int32 l;
+ sal_Int32 l = 0;
a >>= l;
return PyRef( PyInt_FromLong (l), SAL_NO_ACQUIRE );
}