summaryrefslogtreecommitdiff
path: root/pyuno
diff options
context:
space:
mode:
authorIvo Hinkelmann <ihi@openoffice.org>2006-08-29 10:04:27 +0000
committerIvo Hinkelmann <ihi@openoffice.org>2006-08-29 10:04:27 +0000
commit1dc4bc63bf98a564d01f5a41251ceaef52af0851 (patch)
tree0c98b48d159b7e49d10eca12bc64f0ab86db43df /pyuno
parent7a78a619548e3fbdda7bdde791ed79b878ddb662 (diff)
INTEGRATION: CWS warningfixes03_SRC680 (1.13.6); FILE MERGED
2006/08/18 12:49:44 mhu 1.13.6.1: #i68745# Fixed GCC 4.0.x warning(s).
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 f270cdae1..a966ea4b1 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.13 $
+ * $Revision: 1.14 $
*
- * last change: $Author: kz $ $Date: 2006-07-19 16:42:27 $
+ * last change: $Author: ihi $ $Date: 2006-08-29 11:04:27 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -434,7 +434,7 @@ PyRef Runtime::any2PyObject (const Any &a ) const
}
case typelib_TypeClass_BOOLEAN:
{
- sal_Bool b;
+ sal_Bool b = sal_Bool();
if ((a >>= b) && b)
return Py_True;
else