diff options
author | Ivo Hinkelmann <ihi@openoffice.org> | 2006-08-29 10:02:59 +0000 |
---|---|---|
committer | Ivo Hinkelmann <ihi@openoffice.org> | 2006-08-29 10:02:59 +0000 |
commit | cdcac635147f54c11c19b4ac3424f81f4169dff1 (patch) | |
tree | 9ad11ebf1379135a2b4cd75b4076f66e9f8c7f7c /xmloff/source | |
parent | 36e60222b8d1f530e018df58fade1b5bb7ddd92a (diff) |
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).
Diffstat (limited to 'xmloff/source')
-rw-r--r-- | xmloff/source/text/XMLIndexMarkExport.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
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 ) |