diff options
Diffstat (limited to 'svl/source/crypto')
-rw-r--r-- | svl/source/crypto/cryptosign.cxx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/svl/source/crypto/cryptosign.cxx b/svl/source/crypto/cryptosign.cxx index 3fe6ae90ab34..52f4e4e021b2 100644 --- a/svl/source/crypto/cryptosign.cxx +++ b/svl/source/crypto/cryptosign.cxx @@ -349,19 +349,19 @@ OUString PKIStatusToString(int n) { switch (n) { - case 0: return "granted"; - case 1: return "grantedWithMods"; - case 2: return "rejection"; - case 3: return "waiting"; - case 4: return "revocationWarning"; - case 5: return "revocationNotification"; + case 0: return u"granted"_ustr; + case 1: return u"grantedWithMods"_ustr; + case 2: return u"rejection"_ustr; + case 3: return u"waiting"_ustr; + case 4: return u"revocationWarning"_ustr; + case 5: return u"revocationNotification"_ustr; default: return "unknown (" + OUString::number(n) + ")"; } } OUString PKIStatusInfoToString(const PKIStatusInfo& rStatusInfo) { - OUString result = "{status="; + OUString result = u"{status="_ustr; if (rStatusInfo.status.len == 1) result += PKIStatusToString(rStatusInfo.status.data[0]); else |