summaryrefslogtreecommitdiff
path: root/include/svx/shapeproperty.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-08-23 11:53:22 +0200
committerNoel Grandin <noel@peralex.com>2016-08-24 08:47:57 +0200
commit44b2afa192fbf78d337cf18840c26b7d04e91a4e (patch)
tree7e317015cada10da03f4395b265dd0bd68b75684 /include/svx/shapeproperty.hxx
parentc33a1d47de07c327013979b1165f72298eaded45 (diff)
convert ShapeProperty to scoped enum
Change-Id: I2e0dc3aaefb174c8960bb6b8ce9a4ad830626ba4
Diffstat (limited to 'include/svx/shapeproperty.hxx')
-rw-r--r--include/svx/shapeproperty.hxx15
1 files changed, 6 insertions, 9 deletions
diff --git a/include/svx/shapeproperty.hxx b/include/svx/shapeproperty.hxx
index 4ed901a48a12..aeeaa13b9445 100644
--- a/include/svx/shapeproperty.hxx
+++ b/include/svx/shapeproperty.hxx
@@ -24,27 +24,24 @@
namespace svx
{
-
//= ShapeProperty
- enum ShapeProperty
+ enum class ShapeProperty
{
// generic (UNO) shape properties
- eShapePosition,
- eShapeSize,
+ Position,
+ Size,
// text doc shape properties
- eTextShapeAnchorType,
+ TextDocAnchor,
// spreadsheet doc shape properties
- eSpreadsheetAnchor,
+ CalcDocAnchor,
// invalid, not to be used
- eInvalidShapeProperty
+ Invalid
};
-
}
-
#endif // INCLUDED_SVX_SHAPEPROPERTY_HXX
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */