diff options
author | Noel Grandin <noel@peralex.com> | 2013-11-15 11:05:19 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-11-19 10:29:31 +0200 |
commit | 610b2b94b33b0fc2d79cd515f9e293ca1c2610e8 (patch) | |
tree | 6eab2639cb8104ca54daa3f7a2ebd83ef1566cf0 /unotools | |
parent | 2c35fff7eca3a143d28dc75e6a73fe1101d2af77 (diff) |
remove unnecessary use of OUString constructor when assigning
change code like
aStr = OUString("xxxx");
to
aStr = "xxxx";
Change-Id: Ib981a5cc735677ec5dba76ef9279a107d22e99d4
Diffstat (limited to 'unotools')
-rw-r--r-- | unotools/source/config/fontcfg.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unotools/source/config/fontcfg.cxx b/unotools/source/config/fontcfg.cxx index ba04027ead45..c6f32074436e 100644 --- a/unotools/source/config/fontcfg.cxx +++ b/unotools/source/config/fontcfg.cxx @@ -110,7 +110,7 @@ DefaultFontConfiguration::DefaultFontConfiguration() m_xConfigProvider = theDefaultProvider::get( xContext ); Sequence< Any > aArgs(1); PropertyValue aVal; - aVal.Name = OUString( "nodepath" ); + aVal.Name = "nodepath"; aVal.Value <<= OUString( "/org.openoffice.VCL/DefaultFonts" ); aArgs.getArray()[0] <<= aVal; m_xConfigAccess = @@ -375,7 +375,7 @@ FontSubstConfiguration::FontSubstConfiguration() : m_xConfigProvider = theDefaultProvider::get( xContext ); Sequence< Any > aArgs(1); PropertyValue aVal; - aVal.Name = OUString( "nodepath" ); + aVal.Name = "nodepath"; aVal.Value <<= OUString( "/org.openoffice.VCL/FontSubstitutions" ); aArgs.getArray()[0] <<= aVal; m_xConfigAccess = |