diff options
author | Noel Grandin <noel@peralex.com> | 2016-08-22 14:54:18 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-08-23 09:54:16 +0200 |
commit | 6fc92adb8f89e653fd733e77ab24b4fcffe6a909 (patch) | |
tree | 398e14591cdfb44fb146def9eab0ccfa3fe720d3 /svx/source/svdraw/svdocapt.cxx | |
parent | c3b305149efd8a2407078ce5908ab1e1df567aba (diff) |
convert SdrHdlKind to scoped enum
Change-Id: Ib0a06d94f8b51cce1f29f20d1c00d54be939c076
Diffstat (limited to 'svx/source/svdraw/svdocapt.cxx')
-rw-r--r-- | svx/source/svdraw/svdocapt.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/svdraw/svdocapt.cxx b/svx/source/svdraw/svdocapt.cxx index 64927a52b96a..bc917815586c 100644 --- a/svx/source/svdraw/svdocapt.cxx +++ b/svx/source/svdraw/svdocapt.cxx @@ -291,7 +291,7 @@ SdrHdl* SdrCaptionObj::GetHdl(sal_uInt32 nHdlNum) const if(nPntNum < aTailPoly.GetSize()) { - SdrHdl* pHdl = new SdrHdl(aTailPoly.GetPoint((sal_uInt16)nPntNum), HDL_POLY); + SdrHdl* pHdl = new SdrHdl(aTailPoly.GetPoint((sal_uInt16)nPntNum), SdrHdlKind::Poly); pHdl->SetPolyNum(1L); pHdl->SetPointNum(nPntNum); return pHdl; |