diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-12-10 11:51:27 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-12-11 09:08:31 +0100 |
commit | c3d5da852584154b5efbce564006e06acbc5f604 (patch) | |
tree | baba185a90b5b9467ef50bb53a57195c858119b9 /sw/inc | |
parent | 48e8c03710a540341a0d901273c42acfe0189498 (diff) |
convert SwSortDirection to scoped enum
Change-Id: I20eea9b1addf0f7483d1b48a3d74eb342b479d04
Reviewed-on: https://gerrit.libreoffice.org/84854
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sw/inc')
-rw-r--r-- | sw/inc/sortopt.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/inc/sortopt.hxx b/sw/inc/sortopt.hxx index 959080b3247e..b29460f1f647 100644 --- a/sw/inc/sortopt.hxx +++ b/sw/inc/sortopt.hxx @@ -25,8 +25,8 @@ #include <memory> #include <vector> -enum class SwSortOrder { Ascending, Descending }; -enum SwSortDirection { SRT_COLUMNS, SRT_ROWS }; +enum class SwSortOrder { Ascending, Descending }; +enum class SwSortDirection { Columns, Rows }; struct SW_DLLPUBLIC SwSortKey { |