summaryrefslogtreecommitdiff
path: root/sal/workben/testfile.cxx
diff options
context:
space:
mode:
authorGert Faller <gertfaller@aliceadsl.fr>2010-12-10 18:31:39 +0100
committerGert Faller <gertfaller@aliceadsl.fr>2010-12-10 18:31:39 +0100
commit3a18c3d97abfb60a09cc6a8bd5dd163fe2cfafa3 (patch)
tree02ef980b5d6440ebbacf6f8801bea9d27f62b7a5 /sal/workben/testfile.cxx
parent377a56fb1b9825ec5dc71ba9ae81b6e27cfabffb (diff)
RTL_CONSTASCII_USTRINGPARAM in ure 1
Diffstat (limited to 'sal/workben/testfile.cxx')
-rw-r--r--sal/workben/testfile.cxx30
1 files changed, 15 insertions, 15 deletions
diff --git a/sal/workben/testfile.cxx b/sal/workben/testfile.cxx
index d92522fa07ca..4881248eb212 100644
--- a/sal/workben/testfile.cxx
+++ b/sal/workben/testfile.cxx
@@ -163,7 +163,7 @@ sal_Bool Initialize( void )
iniFileURL=rtl::OUString( rtl_uString_getStr(strExeFileURL) ,(int) (pExeFileCount-rtl_uString_getStr(strExeFileURL)) );
// add "/testfile.ini" to iniFileURL
- iniFileURL+=rtl::OUString::createFromAscii("/testfile.ini");
+ iniFileURL+=rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("/testfile.ini"));
// Open the ini-File
pFile=new File( iniFileURL );
@@ -906,7 +906,7 @@ void FileCopyAndMoveTest( void )
// FileCopyTest
//--------------------------------------------------
- destPath+=rtl::OUString::createFromAscii("/");
+ destPath+=rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("/"));
destPath+=file3;
printf( "Copy the file ");
@@ -940,7 +940,7 @@ void FileCopyAndMoveTest( void )
//--------------------------------------------------
destPath=rtl::OUString( dir_not_exist );
- destPath+=rtl::OUString::createFromAscii("/");
+ destPath+=rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("/"));
destPath+=file3;
printf( "Copy a file to a not existing directory \n");
@@ -973,7 +973,7 @@ void FileCopyAndMoveTest( void )
//--------------------------------------------------
destPath=rtl::OUString( dir2 );
- destPath+=rtl::OUString::createFromAscii("/");
+ destPath+=rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("/"));
destPath+=file3;
printf( "Move the file ");
@@ -1022,7 +1022,7 @@ void FileCopyAndMoveTest( void )
//--------------------------------------------------
destPath=rtl::OUString( dir_not_exist );
- destPath+=rtl::OUString::createFromAscii("/");
+ destPath+=rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("/"));
destPath+=file3;
printf( "Move a file to a not existing directory: \n");
@@ -2302,15 +2302,15 @@ void AbsolutePathTest(void)
printf( "AbsolutePath-Test\n" );
printf( "--------------------------------------------\n\n" );
- DoAbsolutePathTest(dir1, rtl::OUString::createFromAscii("."));
- DoAbsolutePathTest(dir1, rtl::OUString::createFromAscii(".."));
- DoAbsolutePathTest(dir1, rtl::OUString::createFromAscii("../.."));
- DoAbsolutePathTest(dir1, rtl::OUString::createFromAscii("../HUHU"));
+ DoAbsolutePathTest(dir1, rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(".")));
+ DoAbsolutePathTest(dir1, rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("..")));
+ DoAbsolutePathTest(dir1, rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("../..")));
+ DoAbsolutePathTest(dir1, rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("../HUHU")));
- DoAbsolutePathTest(dir_on_server, rtl::OUString::createFromAscii("."));
- DoAbsolutePathTest(dir_on_server, rtl::OUString::createFromAscii(".."));
- DoAbsolutePathTest(dir_on_server, rtl::OUString::createFromAscii("../.."));
- DoAbsolutePathTest(dir_on_server, rtl::OUString::createFromAscii("../HUHU"));
+ DoAbsolutePathTest(dir_on_server, rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(".")));
+ DoAbsolutePathTest(dir_on_server, rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("..")));
+ DoAbsolutePathTest(dir_on_server, rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("../..")));
+ DoAbsolutePathTest(dir_on_server, rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("../HUHU")));
PressKey();
return;
@@ -2420,7 +2420,7 @@ void SearchPathTest(void)
printFileName( file3 );
printf( "\n" );
- rc=FileBase::searchFileURL( file3 , rtl::OUString::createFromAscii("") , strResultPath );
+ rc=FileBase::searchFileURL( file3 , rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("")) , strResultPath );
if ( rc == FileBase::E_None )
{
@@ -2457,7 +2457,7 @@ void SearchPathTest(void)
//------------------------------------------------------------
rtl::OUString strSearchPath( dir_not_exist );
- strSearchPath+=rtl::OUString::createFromAscii(";");
+ strSearchPath+=rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(";"));
strSearchPath+=dir_on_server;
printf( "\nsearchFileURL: File : ");