summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-10-08 12:22:16 +0200
committerNoel Grandin <noel@peralex.com>2014-10-08 12:22:55 +0200
commitbc0020344c36fbfc7365b5546e209d0356b53580 (patch)
tree2d94534a7eca8ad89e36f1678dd9a048e5a0ba10 /sd
parent0c57f31a8b15ec0e84d1e3752122664af236a8c3 (diff)
convert PathKind enum in SD to enum class
to get the NONE constant out of the global namespace Change-Id: Iecbe39126c1ec08aa852fcb903cee1a6e6f4594b
Diffstat (limited to 'sd')
-rw-r--r--sd/source/ui/animations/CustomAnimationCreateDialog.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/ui/animations/CustomAnimationCreateDialog.hxx b/sd/source/ui/animations/CustomAnimationCreateDialog.hxx
index 177eb8550945..b17be8894781 100644
--- a/sd/source/ui/animations/CustomAnimationCreateDialog.hxx
+++ b/sd/source/ui/animations/CustomAnimationCreateDialog.hxx
@@ -23,7 +23,7 @@
#include "CustomAnimationPreset.hxx"
#include <vcl/tabdlg.hxx>
-enum PathKind { NONE, CURVE, POLYGON, FREEFORM };
+enum class PathKind { NONE, CURVE, POLYGON, FREEFORM };
class TabControl;
class OKButton;