summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-05-25 11:26:01 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-05-25 13:11:50 +0000
commit102196f06400864ef49af961352b5c285ee1f3ab (patch)
tree9c9fd222e06847ce239eaa0c8993b5700b578084 /include
parenta0a31d1a5ba7a2f9eee7b891f0d29f82d9ad13b7 (diff)
Convert AUTOCOMPLETE to scoped enum
Change-Id: I201c8f8b41855b2777f0e7131aeaf33cafb82804 Reviewed-on: https://gerrit.libreoffice.org/25438 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include')
-rw-r--r--include/vcl/edit.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/vcl/edit.hxx b/include/vcl/edit.hxx
index ce686d4cbc52..d203bf731f11 100644
--- a/include/vcl/edit.hxx
+++ b/include/vcl/edit.hxx
@@ -62,7 +62,7 @@ public:
virtual ~TextFilter();
};
-enum AutocompleteAction{ AUTOCOMPLETE_KEYINPUT, AUTOCOMPLETE_TABFORWARD, AUTOCOMPLETE_TABBACKWARD };
+enum class AutocompleteAction { KeyInput, TabForward, TabBackward };
class Timer;