diff options
author | Noel Grandin <noel@peralex.com> | 2016-02-23 15:14:58 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-02-24 11:48:38 +0200 |
commit | dc1f1cde6329044611607d8bfc10203b6d83dcee (patch) | |
tree | 9dd20b1ac2818101667ee43c3e69c22bbab0b48e /include | |
parent | 0839f90394d96cf0fe414913527b3e3e5ba3c86a (diff) |
convert DocPasswordVerifierResult to scoped enum
Change-Id: Ib5a595819dec8511d284ed1022d8f7c624f8d8f9
Diffstat (limited to 'include')
-rw-r--r-- | include/comphelper/docpasswordhelper.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/comphelper/docpasswordhelper.hxx b/include/comphelper/docpasswordhelper.hxx index e1f9976d7f87..12ecb7ee6e69 100644 --- a/include/comphelper/docpasswordhelper.hxx +++ b/include/comphelper/docpasswordhelper.hxx @@ -30,11 +30,11 @@ namespace com { namespace sun { namespace star { namespace beans { struct Proper namespace comphelper { -enum DocPasswordVerifierResult +enum class DocPasswordVerifierResult { - DocPasswordVerifierResult_OK, - DocPasswordVerifierResult_WRONG_PASSWORD, - DocPasswordVerifierResult_ABORT + OK, + WrongPassword, + Abort }; |