diff options
author | Gert Faller <gertfaller@aliceadsl.fr> | 2010-12-10 18:31:39 +0100 |
---|---|---|
committer | Gert Faller <gertfaller@aliceadsl.fr> | 2010-12-10 18:31:39 +0100 |
commit | 3a18c3d97abfb60a09cc6a8bd5dd163fe2cfafa3 (patch) | |
tree | 02ef980b5d6440ebbacf6f8801bea9d27f62b7a5 /store/workben | |
parent | 377a56fb1b9825ec5dc71ba9ae81b6e27cfabffb (diff) |
RTL_CONSTASCII_USTRINGPARAM in ure 1
Diffstat (limited to 'store/workben')
-rw-r--r-- | store/workben/t_store.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/store/workben/t_store.cxx b/store/workben/t_store.cxx index 9f4e83931e52..39c2f6ed9750 100644 --- a/store/workben/t_store.cxx +++ b/store/workben/t_store.cxx @@ -174,7 +174,7 @@ DirectoryTraveller::DirectoryTraveller ( m_nCount (0) { m_aPath += rName; - m_aPath += OUString::createFromAscii("/"); + m_aPath += OUString(RTL_CONSTASCII_USTRINGPARAM("/")); } /* @@ -458,7 +458,7 @@ int SAL_CALL main (int argc, char **argv) { // Create symlink to (root) directory. eErrCode = aFile.symlink ( - aPath, OUString::createFromAscii("000000/"), + aPath, OUString(RTL_CONSTASCII_USTRINGPARAM("000000/")), OUString(), aPath); OSL_POSTCOND( ((eErrCode == store_E_None ) || @@ -470,7 +470,7 @@ int SAL_CALL main (int argc, char **argv) eErrCode = aFile.symlink ( aPath, aLinkName, - aPath, OUString::createFromAscii("demostor-1.dat")); + aPath, OUString(RTL_CONSTASCII_USTRINGPARAM("demostor-1.dat"))); OSL_POSTCOND( ((eErrCode == store_E_None ) || (eErrCode == store_E_AlreadyExists) ), @@ -517,7 +517,7 @@ int SAL_CALL main (int argc, char **argv) { // Open symlink entry. eErrCode = aRootDir.create ( - aFile, aPath, OUString::createFromAscii("000000"), + aFile, aPath, OUString(RTL_CONSTASCII_USTRINGPARAM("000000")), store_AccessReadOnly); } else |