summaryrefslogtreecommitdiff
path: root/store
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2013-03-19 14:16:55 +0100
committerThomas Arnhold <thomas@arnhold.org>2013-03-19 14:18:10 +0100
commit5bb4a2ba1d8a6b98720868786e552aa8fd2a22eb (patch)
treef891d796fa21c5bfb941eaa4a3f0c05a7e179cc6 /store
parent2633b249ea6921645c57ab24a1c9ad0c8e61e144 (diff)
further OUString cleanup
Change-Id: I19954ee5976cb881a5fe73a889c8e04a19b14eb6
Diffstat (limited to 'store')
-rw-r--r--store/workben/t_store.cxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/store/workben/t_store.cxx b/store/workben/t_store.cxx
index 7709c58b8c40..507edde5d6a3 100644
--- a/store/workben/t_store.cxx
+++ b/store/workben/t_store.cxx
@@ -162,8 +162,7 @@ DirectoryTraveller::DirectoryTraveller (
m_nLevel (nLevel),
m_nCount (0)
{
- m_aPath += rName;
- m_aPath += OUString("/");
+ m_aPath += rName + "/";
}
/*
@@ -359,7 +358,7 @@ int SAL_CALL main (int argc, char **argv)
{
OUString aName ("demostor-");
aName += OUString::valueOf ((sal_Int32)(i + 1), 10);
- aName += OUString(".dat");
+ aName += ".dat";
#if (_DEMOSTOR_REMOVE == 1)
eErrCode = aFile.remove (aPath, aName);