From 1a37d46c794fd8aa5cf2dba0d74103c5c74e9ca2 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Thu, 18 Aug 2016 13:58:49 +0200 Subject: convert SdrInsertReasonKind to scoped enum Change-Id: I225250ef296bb263bdb83c13e23412bf0204be51 --- include/svx/svdpage.hxx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'include') 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 { -- cgit