summaryrefslogtreecommitdiff
path: root/toolkit/inc/controls
diff options
context:
space:
mode:
authorMichael Weghorn <m.weghorn@posteo.de>2023-08-02 13:10:44 +0200
committerMichael Weghorn <m.weghorn@posteo.de>2023-08-03 16:54:23 +0200
commit8c330cd741a55546ee7fdf416600d3f44dd2a40a (patch)
treed3408af356a9ba3ae6d0ee83492aed73ac4d6722 /toolkit/inc/controls
parent18aed6fc4ff5b981ae7deb6584197b661721e7df (diff)
toolkit: Use range-based for, drop invalidTableControlAction
The `invalidTableControlAction` enum value was apparently only used to detect when to stop the iteration and is no longer, so drop it. Change-Id: Idec6572a9f328b246445191f0a3e6a131bb0f688 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/155229 Tested-by: Jenkins Reviewed-by: Michael Weghorn <m.weghorn@posteo.de>
Diffstat (limited to 'toolkit/inc/controls')
-rw-r--r--toolkit/inc/controls/table/tablecontrolinterface.hxx5
1 files changed, 1 insertions, 4 deletions
diff --git a/toolkit/inc/controls/table/tablecontrolinterface.hxx b/toolkit/inc/controls/table/tablecontrolinterface.hxx
index 008fe9b2b293..8f5dca676375 100644
--- a/toolkit/inc/controls/table/tablecontrolinterface.hxx
+++ b/toolkit/inc/controls/table/tablecontrolinterface.hxx
@@ -64,10 +64,7 @@ namespace svt::table
/// selects the row, from the actual cursor till top
cursorSelectRowAreaTop,
/// selects the row, from the actual cursor till bottom
- cursorSelectRowAreaBottom,
-
- /// invalid and final enumeration value, not to be actually used
- invalidTableControlAction
+ cursorSelectRowAreaBottom
};