diff options
author | Noel Grandin <noel@peralex.com> | 2016-02-23 15:47:28 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-02-24 11:48:38 +0200 |
commit | 3b168bc6854cb494cf3a0c1e826ce3fed1d0c141 (patch) | |
tree | d33dfb1599c1eeae99b4175d27b14bfc8e0978a0 /include/comphelper | |
parent | 5d8474bae086bc798212186ff5057eb3350d225b (diff) |
convert DocPasswordRequestType to scoped enum
Change-Id: I25d217ca2cf3e8cc4dfaccc6dc7d5453ffdc6cb6
Diffstat (limited to 'include/comphelper')
-rw-r--r-- | include/comphelper/docpasswordrequest.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/comphelper/docpasswordrequest.hxx b/include/comphelper/docpasswordrequest.hxx index 31e2aad7482c..3dce6c94d18f 100644 --- a/include/comphelper/docpasswordrequest.hxx +++ b/include/comphelper/docpasswordrequest.hxx @@ -32,10 +32,10 @@ class PasswordContinuation; /** Selects which UNO document password request type to use. */ -enum DocPasswordRequestType +enum class DocPasswordRequestType { - DocPasswordRequestType_STANDARD, /// Uses the standard com.sun.star.task.DocumentPasswordRequest request. - DocPasswordRequestType_MS /// Uses the com.sun.star.task.DocumentMSPasswordRequest request. + Standard, /// Uses the standard com.sun.star.task.DocumentPasswordRequest request. + MS /// Uses the com.sun.star.task.DocumentMSPasswordRequest request. }; |