From f9f3426e8210329efdabfc3151c778d649fec129 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 24 Aug 2016 10:32:03 +0200 Subject: convert RefMode to scoped enum Change-Id: I4ecaeaa1fb4989576cb7322048c8ec3a3f3080ae --- include/svx/framelink.hxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'include') diff --git a/include/svx/framelink.hxx b/include/svx/framelink.hxx index e7ac85c3b7d4..7f3a5ba6e57d 100644 --- a/include/svx/framelink.hxx +++ b/include/svx/framelink.hxx @@ -42,24 +42,24 @@ namespace frame { /** Specifies how the reference points for frame borders are used. */ -enum RefMode +enum class RefMode { /** Frame borders are drawn centered to the reference points. */ - REFMODE_CENTERED, + Centered, /** The reference points specify the begin of the frame border width. The result is that horizontal lines are drawn below, and vertical lines are drawn right of the reference points. */ - REFMODE_BEGIN, + Begin, /** The reference points specify the end of the frame border width. The result is that horizontal lines are drawn above, and vertical lines are drawn left of the reference points. */ - REFMODE_END + End }; -- cgit