diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-06-13 17:53:15 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-06-13 17:54:37 +0200 |
commit | c21979a3279953ec28fc3d6e379b9a3ba98c4fd3 (patch) | |
tree | 69cd0929d5d6acfe96af2cdd77e2d4ab1e4c6ba0 /xmloff/source/transform/StyleOOoTContext.cxx | |
parent | b2d0d7172a7fb3db7370b9dbe5733ff7c9689a2e (diff) |
loplugin:staticcall
Change-Id: I7691a6d267ea572e3fdd028c1cfae7b721a76da7
Diffstat (limited to 'xmloff/source/transform/StyleOOoTContext.cxx')
-rw-r--r-- | xmloff/source/transform/StyleOOoTContext.cxx | 8 |
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; |