loplugin:stringconstant: OUStringBuffer: appendAscii -> append

Change-Id: I137a0fe7f44ea46af0f9d5337c2aec61a64f508d
This commit is contained in:
Stephan Bergmann
2015-08-31 08:01:56 +02:00
parent c8f6c456bd
commit ec27e71ff0

View File

@@ -598,9 +598,9 @@ utl::OConfigurationTreeRoot ResourceManager::GetLegacyAddonRootNode (const OUStr
OUString()));
OUStringBuffer aPathComposer;
aPathComposer.appendAscii("org.openoffice.Office.UI.");
aPathComposer.append("org.openoffice.Office.UI.");
aPathComposer.append(sWindowStateRef);
aPathComposer.appendAscii("/UIElements/States");
aPathComposer.append("/UIElements/States");
return utl::OConfigurationTreeRoot(xContext, aPathComposer.makeStringAndClear(), false);
}