summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-08-18 11:17:26 +0200
committerNoel Grandin <noel@peralex.com>2016-08-19 08:18:37 +0200
commite00aa45d3456e2f76ed70d593d6ae1646aa1ae51 (patch)
tree3e7accfec5923d37ca5daa2ac20bf24ebcf9bf53 /include
parent5252d3951f2febdfc714f37ffef9f4c0794c4cec (diff)
convert SdrObjListKind to scoped enum
Change-Id: I37577e43ad6b9f0843b52cb3667f654abb335677
Diffstat (limited to 'include')
-rw-r--r--include/svx/svdtypes.hxx17
1 files changed, 9 insertions, 8 deletions
diff --git a/include/svx/svdtypes.hxx b/include/svx/svdtypes.hxx
index 70f559cd335b..1acc7875f798 100644
--- a/include/svx/svdtypes.hxx
+++ b/include/svx/svdtypes.hxx
@@ -69,14 +69,15 @@ typedef sal_uInt8 SdrLayerID;
/*
* Page + ObjList
*/
-enum SdrObjListKind {SDROBJLIST_UNKNOWN =0x00,
- // reine Objektlisten:
- SDROBJLIST_GROUPOBJ =0x01,
- // Here is space for 12 more types of lists
- // Pages:
- SDROBJLIST_DRAWPAGE =0x10,
- SDROBJLIST_MASTERPAGE =0x11
- // Here is space for 8 more types of pages
+enum class SdrObjListKind {
+ Unknown = 0x00,
+ // reine Objektlisten:
+ GroupObj = 0x01,
+ // Here is space for 12 more types of lists
+ // Pages:
+ DrawPage = 0x10,
+ MasterPage = 0x11
+ // Here is space for 8 more types of pages
}; // reserved for Surrogate
/*