diff options
author | Noel Grandin <noel@peralex.com> | 2016-08-23 15:26:17 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-08-24 08:47:57 +0200 |
commit | 8267445b2e923b9de0ebe8c15e928e91c834ab86 (patch) | |
tree | 7f6739ce97435c9187c992fa2bee93ce131e460a /svx/source/svdraw | |
parent | 3d226bdc444084615b29f79b977ade73fd653240 (diff) |
convert SdrObjClosedKind to scoped enum
Change-Id: Icb3a6ce66687ea66f72df956dc695e0a4147365e
Diffstat (limited to 'svx/source/svdraw')
-rw-r--r-- | svx/source/svdraw/svdpoev.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/svdraw/svdpoev.cxx b/svx/source/svdraw/svdpoev.cxx index b1795f197383..4f4c92743483 100644 --- a/svx/source/svdraw/svdpoev.cxx +++ b/svx/source/svdraw/svdpoev.cxx @@ -525,15 +525,15 @@ SdrObjClosedKind SdrPolyEditView::GetMarkedObjectsClosedState() const if(bOpen && bClosed) { - return SDROBJCLOSED_DONTCARE; + return SdrObjClosedKind::DontCare; } else if(bOpen) { - return SDROBJCLOSED_OPEN; + return SdrObjClosedKind::Open; } else { - return SDROBJCLOSED_CLOSED; + return SdrObjClosedKind::Closed; } } |