diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-08-17 10:23:50 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-08-17 10:23:50 +0200 |
commit | a82af43b526c9eca38f74f51d9af0c99c62f8121 (patch) | |
tree | 0bd6a602e03ba28ea4c7414b59c40e15f7feba8e /vcl/qa/cppunit/mnemonic.cxx | |
parent | a70f9fffe7d2751ca0401c43c92e7fb8dea571d4 (diff) |
Clean up uses of OUString::fromUtf8 around string literals
Change-Id: I9a2990e49c95a01ce505f13408be8c19db1cf5d1
Diffstat (limited to 'vcl/qa/cppunit/mnemonic.cxx')
-rw-r--r-- | vcl/qa/cppunit/mnemonic.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/qa/cppunit/mnemonic.cxx b/vcl/qa/cppunit/mnemonic.cxx index 4527d2ed1784..0109c1cd0279 100644 --- a/vcl/qa/cppunit/mnemonic.cxx +++ b/vcl/qa/cppunit/mnemonic.cxx @@ -33,7 +33,7 @@ void VclMnemonicTest::testMnemonic() MnemonicGenerator aGenerator; { - OUString sResult = aGenerator.CreateMnemonic(OUString::fromUtf8(u8"ßa")); + OUString sResult = aGenerator.CreateMnemonic(u"ßa"); CPPUNIT_ASSERT_EQUAL(u'~', sResult[1]); } |