diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2006-11-01 15:09:25 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2006-11-01 15:09:25 +0000 |
commit | 3e802a25c941f8d9c901d0426458f52a8dfff744 (patch) | |
tree | e7b0ae9521cfa26889b9c7a52f423471e1cf9ec0 /xmloff | |
parent | f4b9b0c191b158491e5e4d7a01eb5222aa7c196b (diff) |
INTEGRATION: CWS kendy15 (1.6.6); FILE MERGED
2006/10/20 09:06:44 kendy 1.6.6.1: #i70594#
Fix warning: XYZ is used uninitialized in this function
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/style/weighhdl.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xmloff/source/style/weighhdl.cxx b/xmloff/source/style/weighhdl.cxx index 852198ebff58..e5588b6c3c30 100644 --- a/xmloff/source/style/weighhdl.cxx +++ b/xmloff/source/style/weighhdl.cxx @@ -4,9 +4,9 @@ * * $RCSfile: weighhdl.cxx,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: obo $ $Date: 2006-10-12 14:51:57 $ + * last change: $Author: vg $ $Date: 2006-11-01 16:09:25 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -165,7 +165,7 @@ sal_Bool XMLFontWeightPropHdl::exportXML( OUString& rStrExpValue, const Any& rVa sal_Bool bRet = sal_False; FontWeight eWeight; - float fValue; + float fValue = float(); if( !( rValue >>= fValue ) ) { sal_Int32 nValue; |