[Libreoffice-commits] core.git: sd/source

Noel Grandin noel at peralex.com
Wed Oct 8 03:23:36 PDT 2014


 sd/source/ui/animations/CustomAnimationCreateDialog.hxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit bc0020344c36fbfc7365b5546e209d0356b53580
Author: Noel Grandin <noel at peralex.com>
Date:   Wed Oct 8 12:22:16 2014 +0200

    convert PathKind enum in SD to enum class
    
    to get the NONE constant out of the global namespace
    
    Change-Id: Iecbe39126c1ec08aa852fcb903cee1a6e6f4594b

diff --git a/sd/source/ui/animations/CustomAnimationCreateDialog.hxx b/sd/source/ui/animations/CustomAnimationCreateDialog.hxx
index 177eb85..b17be88 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;


More information about the Libreoffice-commits mailing list