diff options
author | Kurt Zenker <kz@openoffice.org> | 2007-06-18 15:33:27 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2007-06-18 15:33:27 +0000 |
commit | 0d292a636247ed468878c6817dfedae8337ef59b (patch) | |
tree | 8567f9479e33a5d7f43a992e35631434853a45ad /starmath/source/cfgitem.cxx | |
parent | 2cfbb2f19cebca8a789bb46c58c07005d0d4dba4 (diff) |
INTEGRATION: CWS pj81 (1.17.4); FILE MERGED
2007/06/11 07:46:29 pjanik 1.17.4.1: #i78244#: Initialize variables to prevent warnings on Mac OS X.
Diffstat (limited to 'starmath/source/cfgitem.cxx')
-rw-r--r-- | starmath/source/cfgitem.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/starmath/source/cfgitem.cxx b/starmath/source/cfgitem.cxx index e8517dc019c0..a861569e9de9 100644 --- a/starmath/source/cfgitem.cxx +++ b/starmath/source/cfgitem.cxx @@ -4,9 +4,9 @@ * * $RCSfile: cfgitem.cxx,v $ * - * $Revision: 1.17 $ + * $Revision: 1.18 $ * - * last change: $Author: vg $ $Date: 2007-05-25 12:11:41 $ + * last change: $Author: kz $ $Date: 2007-06-18 16:33:27 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -894,8 +894,8 @@ void SmMathConfig::LoadOther() const Any *pValues = aValues.getConstArray(); const Any *pVal = pValues; - INT16 nTmp16; - BOOL bTmp; + INT16 nTmp16 = 0; + BOOL bTmp = FALSE; // Print/Title if (pVal->hasValue() && (*pVal >>= bTmp)) @@ -1001,8 +1001,8 @@ void SmMathConfig::LoadFormat() const Any *pVal = pValues; OUString aTmpStr; - INT16 nTmp16; - BOOL bTmp; + INT16 nTmp16 = 0; + BOOL bTmp = FALSE; // StandardFormat/Textmode if (pVal->hasValue() && (*pVal >>= bTmp)) |