diff options
author | Noel Grandin <noel@peralex.com> | 2016-08-18 13:58:49 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-08-19 08:18:37 +0200 |
commit | 1a37d46c794fd8aa5cf2dba0d74103c5c74e9ca2 (patch) | |
tree | 5d42ac4d6063eaf578831b34f5269c28adf07318 /include/svx/svdpage.hxx | |
parent | c2238e16fd131c4e6d49960e8b3caf5ec6a3d001 (diff) |
convert SdrInsertReasonKind to scoped enum
Change-Id: I225250ef296bb263bdb83c13e23412bf0204be51
Diffstat (limited to 'include/svx/svdpage.hxx')
-rw-r--r-- | include/svx/svdpage.hxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/svx/svdpage.hxx b/include/svx/svdpage.hxx index 8749e07c438d..e5205feee39c 100644 --- a/include/svx/svdpage.hxx +++ b/include/svx/svdpage.hxx @@ -52,12 +52,12 @@ class Color; class SfxStyleSheet; class SvxUnoDrawPagesAccess; -enum SdrInsertReasonKind { - SDRREASON_UNKNOWN, - SDRREASON_STREAMING, /// importing document - SDRREASON_UNDO, /// from Undo - SDRREASON_COPY, /// something copied... - SDRREASON_VIEWCALL /// via SdrView::Group(), ... +enum class SdrInsertReasonKind { + Unknown, + Streaming, /// importing document + Undo, /// from Undo + Copy, /// something copied... + ViewCall /// via SdrView::Group(), ... }; class SdrInsertReason { |