summaryrefslogtreecommitdiff
path: root/xmloff/source/style/XMLConstantsPropertyHandler.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'xmloff/source/style/XMLConstantsPropertyHandler.cxx')
-rw-r--r--xmloff/source/style/XMLConstantsPropertyHandler.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/xmloff/source/style/XMLConstantsPropertyHandler.cxx b/xmloff/source/style/XMLConstantsPropertyHandler.cxx
index a5467f247354..54145a46f8fc 100644
--- a/xmloff/source/style/XMLConstantsPropertyHandler.cxx
+++ b/xmloff/source/style/XMLConstantsPropertyHandler.cxx
@@ -36,7 +36,7 @@ bool XMLConstantsPropertyHandler::importXML(
{
sal_uInt16 nEnum;
bool bRet = SvXMLUnitConverter::convertEnum(
- nEnum, rStrImpValue, pMap );
+ nEnum, rStrImpValue, m_pMap );
if( bRet )
rValue <<= static_cast<sal_Int16>(nEnum);
@@ -71,7 +71,7 @@ bool XMLConstantsPropertyHandler::exportXML(
OUStringBuffer aOut;
bRet = SvXMLUnitConverter::convertEnum(
- aOut, nConst, pMap, eDefault );
+ aOut, nConst, m_pMap, m_eDefault );
rStrExpValue = aOut.makeStringAndClear();
}