diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2013-06-29 14:42:54 +0200 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2013-06-29 16:23:23 +0200 |
commit | 318f2b64cc32038b2ab1b18b4a13e3f41e1e35ff (patch) | |
tree | c375d326f022d1e3f3b9baea19ea262982dbc4a3 /xmlhelp | |
parent | 231fb4182fc9e81f801ff1d1355f7a613d0856c2 (diff) |
remove some createFromAscii usage
there are a lot more of them:
git grep 'createFromAscii[^)]*"'
Change-Id: Ibc2e9cae208d8b9c91667bb3b177c6bd6d3a9424
Diffstat (limited to 'xmlhelp')
-rw-r--r-- | xmlhelp/source/cxxhelp/provider/databases.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmlhelp/source/cxxhelp/provider/databases.cxx b/xmlhelp/source/cxxhelp/provider/databases.cxx index 447d1e0f8615..9305dd50d958 100644 --- a/xmlhelp/source/cxxhelp/provider/databases.cxx +++ b/xmlhelp/source/cxxhelp/provider/databases.cxx @@ -877,7 +877,7 @@ KeywordInfo* Databases::getKeyword( const OUString& Database, { OUString fileNameHDFHelp( fileURL ); if( bExtension ) - fileNameHDFHelp += OUString::createFromAscii( "_" ); + fileNameHDFHelp += "_"; if( m_xSFA->exists( fileNameHDFHelp ) ) { helpdatafileproxy::Hdf aHdf( fileNameHDFHelp, m_xSFA ); |