summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-08-18 14:01:31 +0200
committerNoel Grandin <noel@peralex.com>2016-08-19 08:18:37 +0200
commit6078d593fa27eab2035d97e7ef69872564e30f60 (patch)
tree754c743681207eba8cea639dc53d7639f7356314 /include
parent1a37d46c794fd8aa5cf2dba0d74103c5c74e9ca2 (diff)
convert TableHitKind to scoped enum
Change-Id: Ie9cde732a85adadc4edead9a29b456ff15b3f750
Diffstat (limited to 'include')
-rw-r--r--include/svx/svdotable.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/svx/svdotable.hxx b/include/svx/svdotable.hxx
index c627546bfc46..1fe79eee5f3c 100644
--- a/include/svx/svdotable.hxx
+++ b/include/svx/svdotable.hxx
@@ -48,13 +48,13 @@ struct ImplTableShadowPaintInfo;
/// SdrTableHitKind
-enum TableHitKind
+enum class TableHitKind
{
- SDRTABLEHIT_NONE,
- SDRTABLEHIT_CELL,
- SDRTABLEHIT_CELLTEXTAREA,
- SDRTABLEHIT_HORIZONTAL_BORDER,
- SDRTABLEHIT_VERTICAL_BORDER
+ NONE,
+ Cell,
+ CellTextArea,
+ HorizontalBorder,
+ VerticallBorder
};