diff options
Diffstat (limited to 'svl/source/crypto')
-rw-r--r-- | svl/source/crypto/cryptosign.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/svl/source/crypto/cryptosign.cxx b/svl/source/crypto/cryptosign.cxx index 2ace6a9fbee0..c85b5d5870d4 100644 --- a/svl/source/crypto/cryptosign.cxx +++ b/svl/source/crypto/cryptosign.cxx @@ -358,12 +358,12 @@ OUString PKIStatusToString(int n) { switch (n) { - case 0: return OUString("granted"); - case 1: return OUString("grantedWithMods"); - case 2: return OUString("rejection"); - case 3: return OUString("waiting"); - case 4: return OUString("revocationWarning"); - case 5: return OUString("revocationNotification"); + case 0: return "granted"; + case 1: return "grantedWithMods"; + case 2: return "rejection"; + case 3: return "waiting"; + case 4: return "revocationWarning"; + case 5: return "revocationNotification"; default: return "unknown (" + OUString::number(n) + ")"; } } |