Kaydet (Commit) 2bd0b355 authored tarafından Oliver Bolte's avatar Oliver Bolte

INTEGRATION: CWS sb59 (1.6.24); FILE MERGED

2006/08/09 12:53:56 sb 1.6.24.1: #i67487# Made code warning-free (wntmsci10).
üst aac6dd33
...@@ -4,9 +4,9 @@ ...@@ -4,9 +4,9 @@
* *
* $RCSfile: csmaphdl.cxx,v $ * $RCSfile: csmaphdl.cxx,v $
* *
* $Revision: 1.8 $ * $Revision: 1.9 $
* *
* last change: $Author: obo $ $Date: 2006-09-17 10:53:21 $ * last change: $Author: obo $ $Date: 2006-10-12 14:49:01 $
* *
* The Contents of this file are made available subject to * The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1. * the terms of GNU Lesser General Public License Version 2.1.
...@@ -88,18 +88,18 @@ XMLCaseMapPropHdl::~XMLCaseMapPropHdl() ...@@ -88,18 +88,18 @@ XMLCaseMapPropHdl::~XMLCaseMapPropHdl()
// nothing to do // nothing to do
} }
sal_Bool XMLCaseMapPropHdl::importXML( const OUString& rStrImpValue, uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const sal_Bool XMLCaseMapPropHdl::importXML( const OUString& rStrImpValue, uno::Any& rValue, const SvXMLUnitConverter& ) const
{ {
sal_Bool bRet = sal_False;
sal_uInt16 nVal; sal_uInt16 nVal;
sal_Bool bRet = SvXMLUnitConverter::convertEnum(
if( ( bRet = rUnitConverter.convertEnum( nVal, rStrImpValue, pXML_Casemap_Enum ) ) ) nVal, rStrImpValue, pXML_Casemap_Enum );
if( ( bRet ) )
rValue <<= nVal; rValue <<= nVal;
return bRet; return bRet;
} }
sal_Bool XMLCaseMapPropHdl::exportXML( OUString& rStrExpValue, const uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const sal_Bool XMLCaseMapPropHdl::exportXML( OUString& rStrExpValue, const uno::Any& rValue, const SvXMLUnitConverter& ) const
{ {
sal_Bool bRet = sal_False; sal_Bool bRet = sal_False;
sal_uInt16 nValue = sal_uInt16(); sal_uInt16 nValue = sal_uInt16();
...@@ -107,7 +107,9 @@ sal_Bool XMLCaseMapPropHdl::exportXML( OUString& rStrExpValue, const uno::Any& r ...@@ -107,7 +107,9 @@ sal_Bool XMLCaseMapPropHdl::exportXML( OUString& rStrExpValue, const uno::Any& r
if( rValue >>= nValue ) if( rValue >>= nValue )
{ {
if( ( bRet = rUnitConverter.convertEnum( aOut, nValue, pXML_Casemap_Enum ) ) ) bRet = SvXMLUnitConverter::convertEnum(
aOut, nValue, pXML_Casemap_Enum );
if( bRet )
rStrExpValue = aOut.makeStringAndClear(); rStrExpValue = aOut.makeStringAndClear();
} }
...@@ -161,5 +163,5 @@ sal_Bool XMLCaseMapVariantHdl::exportXML( OUString& rStrExpValue, const uno::Any ...@@ -161,5 +163,5 @@ sal_Bool XMLCaseMapVariantHdl::exportXML( OUString& rStrExpValue, const uno::Any
} }
rStrExpValue = aOut.makeStringAndClear(); rStrExpValue = aOut.makeStringAndClear();
return rStrExpValue.getLength(); return rStrExpValue.getLength() != 0;
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment