summaryrefslogtreecommitdiff
path: root/cui
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-08-17 10:23:50 +0200
committerStephan Bergmann <sbergman@redhat.com>2017-08-17 10:23:50 +0200
commita82af43b526c9eca38f74f51d9af0c99c62f8121 (patch)
tree0bd6a602e03ba28ea4c7414b59c40e15f7feba8e /cui
parenta70f9fffe7d2751ca0401c43c92e7fb8dea571d4 (diff)
Clean up uses of OUString::fromUtf8 around string literals
Change-Id: I9a2990e49c95a01ce505f13408be8c19db1cf5d1
Diffstat (limited to 'cui')
-rw-r--r--cui/source/dialogs/cuicharmap.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/cui/source/dialogs/cuicharmap.cxx b/cui/source/dialogs/cuicharmap.cxx
index fa7a192ccef1..4016afe9ced2 100644
--- a/cui/source/dialogs/cuicharmap.cxx
+++ b/cui/source/dialogs/cuicharmap.cxx
@@ -622,10 +622,10 @@ void SvxCharacterMap::insertCharToDoc(const OUString& sGlyph)
uno::Reference< uno::XComponentContext > xContext( comphelper::getProcessComponentContext() );
uno::Sequence<beans::PropertyValue> aArgs(2);
- aArgs[0].Name = OUString::fromUtf8("Symbols");
+ aArgs[0].Name = "Symbols";
aArgs[0].Value <<= sGlyph;
- aArgs[1].Name = OUString::fromUtf8("FontName");
+ aArgs[1].Name = "FontName";
aArgs[1].Value <<= aFont.GetFamilyName();
comphelper::dispatchCommand(".uno:InsertSymbol", aArgs);