diff options
author | Noel Grandin <noel@peralex.com> | 2016-08-24 10:01:52 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-08-25 08:40:00 +0200 |
commit | 9e2750f6ac0da27fd4fa799cd449d4df3b07041b (patch) | |
tree | 025fb90330585bd877f6c87466c6e8a034d09a46 /include | |
parent | 47c4daf0d777771185823ac9367f2108e950d12e (diff) |
convert FrameBorderState to scoped enum
Change-Id: I100b5f5030da5610a350ac42c993ca4cfa786857
Diffstat (limited to 'include')
-rw-r--r-- | include/svx/frmsel.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/svx/frmsel.hxx b/include/svx/frmsel.hxx index 605d87f48801..7e3bff21f619 100644 --- a/include/svx/frmsel.hxx +++ b/include/svx/frmsel.hxx @@ -69,11 +69,11 @@ const FrameSelFlags FRAMESEL_DONTCARE = 0x0100; /** All possible states of a frame border. */ -enum FrameBorderState +enum class FrameBorderState { - FRAMESTATE_SHOW, /// Frame border has a visible style. - FRAMESTATE_HIDE, /// Frame border is hidden (off). - FRAMESTATE_DONTCARE /// Frame border is in don't care state (if enabled). + Show, /// Frame border has a visible style. + Hide, /// Frame border is hidden (off). + DontCare /// Frame border is in don't care state (if enabled). }; |