From 3b168bc6854cb494cf3a0c1e826ce3fed1d0c141 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 23 Feb 2016 15:47:28 +0200 Subject: convert DocPasswordRequestType to scoped enum Change-Id: I25d217ca2cf3e8cc4dfaccc6dc7d5453ffdc6cb6 --- include/comphelper/docpasswordrequest.hxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/comphelper') 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. }; -- cgit