summaryrefslogtreecommitdiff
path: root/unotest
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2013-06-29 14:42:54 +0200
committerThomas Arnhold <thomas@arnhold.org>2013-06-29 16:23:23 +0200
commit318f2b64cc32038b2ab1b18b4a13e3f41e1e35ff (patch)
treec375d326f022d1e3f3b9baea19ea262982dbc4a3 /unotest
parent231fb4182fc9e81f801ff1d1355f7a613d0856c2 (diff)
remove some createFromAscii usage
there are a lot more of them: git grep 'createFromAscii[^)]*"' Change-Id: Ibc2e9cae208d8b9c91667bb3b177c6bd6d3a9424
Diffstat (limited to 'unotest')
-rw-r--r--unotest/source/cpp/bootstrapfixturebase.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/unotest/source/cpp/bootstrapfixturebase.cxx b/unotest/source/cpp/bootstrapfixturebase.cxx
index 337a930ee4e1..2192b79ff024 100644
--- a/unotest/source/cpp/bootstrapfixturebase.cxx
+++ b/unotest/source/cpp/bootstrapfixturebase.cxx
@@ -35,15 +35,15 @@ test::BootstrapFixtureBase::BootstrapFixtureBase()
#ifdef WNT
if (pSrcRoot[1] == ':')
{
- m_aSrcRootURL += OUString::createFromAscii( "/" );
+ m_aSrcRootURL += "/";
}
if (pSolverRoot[1] == ':')
{
- m_aSolverRootURL += OUString::createFromAscii( "/" );
+ m_aSolverRootURL += "/";
}
if (pWorkdirRoot[1] == ':')
{
- m_aWorkdirRootURL += OUString::createFromAscii( "/" );
+ m_aWorkdirRootURL += "/";
}
#endif
#else