summaryrefslogtreecommitdiff
path: root/svx/source/sdr/primitive2d/sdrattributecreator.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/sdr/primitive2d/sdrattributecreator.cxx')
-rw-r--r--svx/source/sdr/primitive2d/sdrattributecreator.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/svx/source/sdr/primitive2d/sdrattributecreator.cxx b/svx/source/sdr/primitive2d/sdrattributecreator.cxx
index 94db008d6b49..5b657c359368 100644
--- a/svx/source/sdr/primitive2d/sdrattributecreator.cxx
+++ b/svx/source/sdr/primitive2d/sdrattributecreator.cxx
@@ -113,21 +113,21 @@ namespace drawinglayer
}
}
- attribute::HatchStyle XHatchStyleToHatchStyle(XHatchStyle eStyle)
+ attribute::HatchStyle XHatchStyleToHatchStyle(css::drawing::HatchStyle eStyle)
{
switch(eStyle)
{
- case XHATCH_SINGLE :
+ case css::drawing::HatchStyle_SINGLE :
{
return attribute::HATCHSTYLE_SINGLE;
}
- case XHATCH_DOUBLE :
+ case css::drawing::HatchStyle_DOUBLE :
{
return attribute::HATCHSTYLE_DOUBLE;
}
default :
{
- return attribute::HATCHSTYLE_TRIPLE; // XHATCH_TRIPLE
+ return attribute::HATCHSTYLE_TRIPLE; // css::drawing::HatchStyle_TRIPLE
}
}
}