From cdcac635147f54c11c19b4ac3424f81f4169dff1 Mon Sep 17 00:00:00 2001 From: Ivo Hinkelmann Date: Tue, 29 Aug 2006 10:02:59 +0000 Subject: INTEGRATION: CWS warningfixes03_SRC680 (1.10.16); FILE MERGED 2006/08/18 14:16:25 mhu 1.10.16.1: #i68745# Fixed GCC 4.0.x warning(s). --- xmloff/source/text/XMLIndexMarkExport.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'xmloff/source') diff --git a/xmloff/source/text/XMLIndexMarkExport.cxx b/xmloff/source/text/XMLIndexMarkExport.cxx index f71e1204adf2..8deb47d5536f 100644 --- a/xmloff/source/text/XMLIndexMarkExport.cxx +++ b/xmloff/source/text/XMLIndexMarkExport.cxx @@ -4,9 +4,9 @@ * * $RCSfile: XMLIndexMarkExport.cxx,v $ * - * $Revision: 1.10 $ + * $Revision: 1.11 $ * - * last change: $Author: kz $ $Date: 2006-07-19 16:37:40 $ + * last change: $Author: ihi $ $Date: 2006-08-29 11:02:59 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -254,7 +254,7 @@ void lcl_ExportPropertyBool( SvXMLExport& rExport, { rAny = rPropSet->getPropertyValue( sProperty ); - sal_Bool bValue; + sal_Bool bValue = sal_Bool(); if( rAny >>= bValue ) { if( bValue ) -- cgit