diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 17:31:24 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 17:31:24 +0000 |
commit | 8ec78953336be5e37cf0e70541580a797ad56cf7 (patch) | |
tree | 9a8b6fdb76ff962d99181d01959068a354db9a2a /xmloff/source/style/chrhghdl.cxx | |
parent | 36018ba563aafe5c3f303c9582049fb2ccd72143 (diff) |
INTEGRATION: CWS warnings01 (1.5.34); FILE MERGED
2005/11/16 22:47:23 pl 1.5.34.2: #i55991# removed warnings
2005/11/03 17:47:04 cl 1.5.34.1: warning free code changes for unxlngi6
Diffstat (limited to 'xmloff/source/style/chrhghdl.cxx')
-rw-r--r-- | xmloff/source/style/chrhghdl.cxx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/xmloff/source/style/chrhghdl.cxx b/xmloff/source/style/chrhghdl.cxx index 75df0c2f2f47..e02f68e2f076 100644 --- a/xmloff/source/style/chrhghdl.cxx +++ b/xmloff/source/style/chrhghdl.cxx @@ -4,9 +4,9 @@ * * $RCSfile: chrhghdl.cxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: rt $ $Date: 2005-09-09 14:38:53 $ + * last change: $Author: hr $ $Date: 2006-06-19 18:31:24 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -76,7 +76,7 @@ XMLCharHeightHdl::~XMLCharHeightHdl() // nothing to do } -sal_Bool XMLCharHeightHdl::importXML( const OUString& rStrImpValue, uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const +sal_Bool XMLCharHeightHdl::importXML( const OUString& rStrImpValue, uno::Any& rValue, const SvXMLUnitConverter& ) const { double fSize; @@ -93,7 +93,7 @@ sal_Bool XMLCharHeightHdl::importXML( const OUString& rStrImpValue, uno::Any& rV return sal_False; } -sal_Bool XMLCharHeightHdl::exportXML( OUString& rStrExpValue, const uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const +sal_Bool XMLCharHeightHdl::exportXML( OUString& rStrExpValue, const uno::Any& rValue, const SvXMLUnitConverter& ) const { OUStringBuffer aOut; @@ -159,7 +159,7 @@ XMLCharHeightDiffHdl::~XMLCharHeightDiffHdl() // nothing to do } -sal_Bool XMLCharHeightDiffHdl::importXML( const OUString& rStrImpValue, uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const +sal_Bool XMLCharHeightDiffHdl::importXML( const OUString& rStrImpValue, uno::Any& rValue, const SvXMLUnitConverter& ) const { sal_Int32 nRel = 0; @@ -172,14 +172,14 @@ sal_Bool XMLCharHeightDiffHdl::importXML( const OUString& rStrImpValue, uno::Any return sal_False; } -sal_Bool XMLCharHeightDiffHdl::exportXML( OUString& rStrExpValue, const uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const +sal_Bool XMLCharHeightDiffHdl::exportXML( OUString& rStrExpValue, const uno::Any& rValue, const SvXMLUnitConverter& ) const { OUStringBuffer aOut; float nRel = 0; if( (rValue >>= nRel) && (nRel != 0) ) { - SvXMLUnitConverter::convertMeasure( aOut, nRel, MAP_POINT, MAP_POINT ); + SvXMLUnitConverter::convertMeasure( aOut, (sal_Int32)nRel, MAP_POINT, MAP_POINT ); rStrExpValue = aOut.makeStringAndClear(); } |