summaryrefslogtreecommitdiff
path: root/include/svx/svdhdl.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-08-22 13:37:00 +0200
committerNoel Grandin <noel@peralex.com>2016-08-23 09:54:16 +0200
commit32918f74a6e1f49f5213efe39f27a0720aeca708 (patch)
treea81f2cfad45fd2c8327ca42a4a5a5ef65ac47e65 /include/svx/svdhdl.hxx
parent618c5fea43904bc800344d08e9c7dcce5f6840b7 (diff)
convert BitmapMarkerKind to scoped enum
Change-Id: Ic0fbeaf9950a8b46f6509d9dd9632c85f45a203c
Diffstat (limited to 'include/svx/svdhdl.hxx')
-rw-r--r--include/svx/svdhdl.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/svx/svdhdl.hxx b/include/svx/svdhdl.hxx
index f93386efd757..2f5edb0283e4 100644
--- a/include/svx/svdhdl.hxx
+++ b/include/svx/svdhdl.hxx
@@ -93,7 +93,7 @@ enum BitmapColorIndex
};
-enum BitmapMarkerKind
+enum class BitmapMarkerKind
{
Rect_7x7,
Rect_9x9,
@@ -234,7 +234,7 @@ public:
visualisation during mouse over it must override this method and call Touch(). */
virtual void onMouseLeave();
- static BitmapEx createGluePointBitmap() { return ImpGetBitmapEx(Glue_Deselected, 0); }
+ static BitmapEx createGluePointBitmap() { return ImpGetBitmapEx(BitmapMarkerKind::Glue_Deselected, 0); }
};