summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-09-02 09:44:00 +0200
committerNoel Grandin <noel@peralex.com>2016-09-05 08:21:46 +0200
commit933c0679d64a5585ebfd233180a1a818b493eec5 (patch)
tree579f2e3683c219cfe3da7f5ebb90c24d475b570f /svx
parent65ca57a447bae97714b1b32aa2df5705215a95ad (diff)
convert HatchStyle to scoped enum
Change-Id: Ibef51ae5ae135ae584791959ec3f7bf78c50e2a8
Diffstat (limited to 'svx')
-rw-r--r--svx/source/svdraw/svdfmtf.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/svdraw/svdfmtf.cxx b/svx/source/svdraw/svdfmtf.cxx
index 146eaab14b38..aad00cae4399 100644
--- a/svx/source/svdraw/svdfmtf.cxx
+++ b/svx/source/svdraw/svdfmtf.cxx
@@ -1131,13 +1131,13 @@ void ImpSdrGDIMetaFileImport::DoAction( MetaHatchAction& rAct )
switch(rHatch.GetStyle())
{
- case HATCH_TRIPLE :
+ case HatchStyle::Triple :
{
eStyle = css::drawing::HatchStyle_TRIPLE;
break;
}
- case HATCH_DOUBLE :
+ case HatchStyle::Double :
{
eStyle = css::drawing::HatchStyle_DOUBLE;
break;