summaryrefslogtreecommitdiff
path: root/linguistic
diff options
context:
space:
mode:
authorRicardo Montania <ricardo@linuxafundo.com.br>2013-05-20 07:30:19 -0300
committerFridrich Strba <fridrich@documentfoundation.org>2013-05-22 21:03:56 +0000
commitb7df3446c373a93dc5b77b495a54d873d83a91a7 (patch)
tree1de5e9567eaf1e7c5115e6b968ec4e49c45af3c1 /linguistic
parent8eb1fb9eff4d4eea9c0c1c2e8d3b380e227b5d50 (diff)
AppendAscii cleanup
Change-Id: I7398272de0bd340ebfb5f31b314d32fcff007eec Reviewed-on: https://gerrit.libreoffice.org/3974 Reviewed-by: Fridrich Strba <fridrich@documentfoundation.org> Tested-by: Fridrich Strba <fridrich@documentfoundation.org>
Diffstat (limited to 'linguistic')
-rw-r--r--linguistic/source/convdiclist.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/linguistic/source/convdiclist.cxx b/linguistic/source/convdiclist.cxx
index 7183d82cc493..e2402fc49bb1 100644
--- a/linguistic/source/convdiclist.cxx
+++ b/linguistic/source/convdiclist.cxx
@@ -68,8 +68,7 @@ String GetConvDicMainURL( const String &rDicName, const String &rDirectoryURL )
{
// build URL to use for new (persistent) dictionaries
- String aFullDicName( rDicName );
- aFullDicName.AppendAscii( CONV_DIC_DOT_EXT );
+ OUString aFullDicName = OUString(rDicName) + CONV_DIC_DOT_EXT;
INetURLObject aURLObj;
aURLObj.SetSmartProtocol( INET_PROT_FILE );