From 8267445b2e923b9de0ebe8c15e928e91c834ab86 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 23 Aug 2016 15:26:17 +0200 Subject: convert SdrObjClosedKind to scoped enum Change-Id: Icb3a6ce66687ea66f72df956dc695e0a4147365e --- svx/source/svdraw/svdpoev.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'svx/source/svdraw/svdpoev.cxx') 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; } } -- cgit