diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-07-02 11:36:18 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-07-02 12:37:42 +0200 |
commit | 169b8d7e0eb0c4674ba59769a8ef54604f653680 (patch) | |
tree | 3a2ef61cf8eb2e7f872b2549901400623a56c0cb /include | |
parent | c2d73de5b5e22e20bc77ee0a27d1c381119c4c79 (diff) |
convert SvSortMode to scoped enum
Change-Id: Ic137e1918f8fa33fbfe6a622be20aa4001172e2e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/118280
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/toolkit/treelist.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/vcl/toolkit/treelist.hxx b/include/vcl/toolkit/treelist.hxx index e45d0d933c01..d4c6da101e6d 100644 --- a/include/vcl/toolkit/treelist.hxx +++ b/include/vcl/toolkit/treelist.hxx @@ -50,7 +50,7 @@ class SvTreeListEntry; class SvListView; class SvViewDataEntry; -enum SvSortMode { SortAscending, SortDescending, SortNone }; +enum class SvSortMode { Ascending, Descending, None }; // For the return values of Sortlink: // See International::Compare( pLeft, pRight ) |