From 244cd15c49e81719b8ac98a7a75eb43c3afd70e4 Mon Sep 17 00:00:00 2001 From: Ivo Hinkelmann Date: Tue, 29 Aug 2006 10:04:27 +0000 Subject: [PATCH] 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). --- pyuno/source/module/pyuno_runtime.cxx | 6 +++--- 1 file 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