diff options
author | Kurt Zenker <kz@openoffice.org> | 2006-07-19 15:44:25 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2006-07-19 15:44:25 +0000 |
commit | 79b700d9b70e175e420032cffddc25924f027593 (patch) | |
tree | 692f493f6333e09101e231aec284fba7fec70632 /forms | |
parent | 690ab1c9961892afdd267feeba29c134323b8012 (diff) |
INTEGRATION: CWS warningfixes02 (1.4.96); FILE MERGED
2006/06/30 12:17:36 sb 1.4.96.1: #i66577# Made the code compile (warning-free) on a unxlngi6.pro GCC 4.1.1 Linux box.
Diffstat (limited to 'forms')
-rw-r--r-- | forms/source/xforms/convert.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/forms/source/xforms/convert.cxx b/forms/source/xforms/convert.cxx index be7621699eaf..939628267094 100644 --- a/forms/source/xforms/convert.cxx +++ b/forms/source/xforms/convert.cxx @@ -4,9 +4,9 @@ * * $RCSfile: convert.cxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: rt $ $Date: 2005-09-08 23:15:28 $ + * last change: $Author: kz $ $Date: 2006-07-19 16:44:25 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -242,7 +242,7 @@ namespace // ------------------------------------------------------------------------ OUString lcl_toXSD_bool( const Any& rAny ) - { bool b; rAny >>= b; return b ? OUSTRING("true") : OUSTRING("false"); } + { bool b = false; rAny >>= b; return b ? OUSTRING("true") : OUSTRING("false"); } // ------------------------------------------------------------------------ Any lcl_toAny_bool( const OUString& rStr ) |