summaryrefslogtreecommitdiff
path: root/xmloff/source/transform/StyleOOoTContext.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'xmloff/source/transform/StyleOOoTContext.cxx')
-rw-r--r--xmloff/source/transform/StyleOOoTContext.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/xmloff/source/transform/StyleOOoTContext.cxx b/xmloff/source/transform/StyleOOoTContext.cxx
index 62afb7c9ae31..e8b225adc5a7 100644
--- a/xmloff/source/transform/StyleOOoTContext.cxx
+++ b/xmloff/source/transform/StyleOOoTContext.cxx
@@ -476,14 +476,14 @@ void XMLPropertiesOOoTContext_Impl::StartElement(
case XML_ATACTION_NEG_PERCENT:
{
OUString aAttrValue( sAttrValue );
- GetTransformer().NegPercent(aAttrValue);
+ XMLTransformerBase::NegPercent(aAttrValue);
pContext->AddAttribute( sAttrName, aAttrValue );
}
break;
case XML_ATACTION_RENAME_NEG_PERCENT:
{
OUString aAttrValue( sAttrValue );
- GetTransformer().NegPercent(aAttrValue);
+ XMLTransformerBase::NegPercent(aAttrValue);
pContext->AddAttribute( aAction.GetQNamePrefixFromParam1(),
aAction.GetQNameTokenFromParam1(),
aAttrValue );
@@ -836,7 +836,7 @@ void XMLPropertiesOOoTContext_Impl::StartElement(
case XML_PTACTION_TRANSPARENCY :
{
OUString aAttrValue( sAttrValue );
- GetTransformer().NegPercent(aAttrValue);
+ XMLTransformerBase::NegPercent(aAttrValue);
pContext->AddAttribute( XML_NAMESPACE_DRAW,
XML_OPACITY,
aAttrValue );
@@ -1256,7 +1256,7 @@ void XMLStyleOOoTContext::StartElement(
case XML_ATACTION_NEG_PERCENT:
{
OUString aAttrValue( sAttrValue );
- if( GetTransformer().NegPercent(aAttrValue) )
+ if( XMLTransformerBase::NegPercent(aAttrValue) )
pMutableAttrList->SetValueByIndex( i, aAttrValue );
}
break;