diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-11-18 10:15:15 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-11-18 11:15:48 +0100 |
commit | efab55fee25c5a2f5a0c491c1ceab721c267af17 (patch) | |
tree | d5f940a88be60d9ad4df818167b3aeea723dc694 /include/comphelper | |
parent | ba637bbbd65d71a3956d56f04ce2703b51479700 (diff) |
convert AccessibilityFlowTo to scoped enum
and drop the unused FORSPELLCHECKFLOWTO
Change-Id: I128e84d386c10d001aa63f93b4b6dcb7238a1242
Reviewed-on: https://gerrit.libreoffice.org/83060
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/comphelper')
-rw-r--r-- | include/comphelper/accflowenum.hxx | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/include/comphelper/accflowenum.hxx b/include/comphelper/accflowenum.hxx index fc6b7ea2d8ec..a5e3b9eb680a 100644 --- a/include/comphelper/accflowenum.hxx +++ b/include/comphelper/accflowenum.hxx @@ -22,11 +22,13 @@ #include <sal/types.h> -enum AccessibilityFlowTo : sal_Int32 +/** + enum for css::accessibility::XAccessibleGetAccFlowTo::getAccFlowTo method +*/ +enum class AccessibilityFlowTo : sal_Int32 { - FORSPELLCHECKFLOWTO = 1, - FORFINDREPLACEFLOWTO_ITEM = 2, - FORFINDREPLACEFLOWTO_RANGE = 3 + ForFindReplaceItem = 2, + ForFindReplaceRange = 3 }; #endif // INCLUDED_COMPHELPER_ACCFLOWENUM_HXX |