diff options
author | Ivo Hinkelmann <ihi@openoffice.org> | 2006-08-29 10:04:27 +0000 |
---|---|---|
committer | Ivo Hinkelmann <ihi@openoffice.org> | 2006-08-29 10:04:27 +0000 |
commit | 244cd15c49e81719b8ac98a7a75eb43c3afd70e4 (patch) | |
tree | b62969a29a9d56e6a639cd97006ba6817e5f52ec /pyuno | |
parent | 7cf515898c3d35cdbc233623e95483497e97cf30 (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.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pyuno/source/module/pyuno_runtime.cxx b/pyuno/source/module/pyuno_runtime.cxx index e78c697e4398..95e450807d21 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 |