summaryrefslogtreecommitdiff
path: root/xmloff/source/style/HatchStyle.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-06-13 17:53:15 +0200
committerStephan Bergmann <sbergman@redhat.com>2014-06-13 17:54:37 +0200
commitc21979a3279953ec28fc3d6e379b9a3ba98c4fd3 (patch)
tree69cd0929d5d6acfe96af2cdd77e2d4ab1e4c6ba0 /xmloff/source/style/HatchStyle.cxx
parentb2d0d7172a7fb3db7370b9dbe5733ff7c9689a2e (diff)
loplugin:staticcall
Change-Id: I7691a6d267ea572e3fdd028c1cfae7b721a76da7
Diffstat (limited to 'xmloff/source/style/HatchStyle.cxx')
-rw-r--r--xmloff/source/style/HatchStyle.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/xmloff/source/style/HatchStyle.cxx b/xmloff/source/style/HatchStyle.cxx
index 6d1db910ad4e..f3d324495a74 100644
--- a/xmloff/source/style/HatchStyle.cxx
+++ b/xmloff/source/style/HatchStyle.cxx
@@ -122,7 +122,7 @@ bool XMLHatchStyleImport::importXML(
case XML_TOK_HATCH_STYLE:
{
sal_uInt16 eValue;
- bHasStyle = rUnitConverter.convertEnum( eValue, rStrValue, pXML_HatchStyle_Enum );
+ bHasStyle = SvXMLUnitConverter::convertEnum( eValue, rStrValue, pXML_HatchStyle_Enum );
if( bHasStyle )
aHatch.Style = (drawing::HatchStyle) eValue;
}
@@ -194,7 +194,7 @@ bool XMLHatchStyleExport::exportXML(
rExport.GetMM100UnitConverter();
// Style
- if( !rUnitConverter.convertEnum( aOut, aHatch.Style, pXML_HatchStyle_Enum ) )
+ if( !SvXMLUnitConverter::convertEnum( aOut, aHatch.Style, pXML_HatchStyle_Enum ) )
{
bRet = false;
}