summaryrefslogtreecommitdiffstats
path: root/sal/qa/osl
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@suse.cz>2013-05-06 16:32:22 +0200
committerLuboš Luňák <l.lunak@suse.cz>2013-05-06 16:51:45 +0200
commite2e2cc61144cb22227eebfadff0ea24b51ccfbd0 (patch)
tree8063275cabcdf32e30c37451a32d96db5929561a /sal/qa/osl
parentRevert "ignore already seen locations in compiler plugins" (diff)
downloadcore-e2e2cc61144cb22227eebfadff0ea24b51ccfbd0.tar.gz
core-e2e2cc61144cb22227eebfadff0ea24b51ccfbd0.zip
remove usage of RTL_CONSTASCII_USTRINGPARAM
Mechanical removal of usage together with OUString ctor, done by compiler plugin. Change-Id: I554227f76df0dac620b1b46fca32516f78b462c5
Diffstat (limited to 'sal/qa/osl')
-rw-r--r--sal/qa/osl/file/osl_old_test_file.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sal/qa/osl/file/osl_old_test_file.cxx b/sal/qa/osl/file/osl_old_test_file.cxx
index 57448e18ba78..fb51d63c9250 100644
--- a/sal/qa/osl/file/osl_old_test_file.cxx
+++ b/sal/qa/osl/file/osl_old_test_file.cxx
@@ -97,7 +97,7 @@ using ::rtl::OString;
void oldtestfile::test_file_001()
{
#ifndef WIN32
- OUString base1( RTL_CONSTASCII_USTRINGPARAM( "file:///" TEST_VOLUME "bla" ) );
+ OUString base1( "file:///" TEST_VOLUME "bla" );
int i;
for( i = 0 ; aSource1[i] ; i +=2 )
{
@@ -116,7 +116,7 @@ void oldtestfile::test_file_001()
void oldtestfile::test_file_002()
{
#ifndef WIN32
- OUString base2( RTL_CONSTASCII_USTRINGPARAM( "file:///" TEST_VOLUME "bla/blubs/schnubbel" ) );
+ OUString base2( "file:///" TEST_VOLUME "bla/blubs/schnubbel" );
int i;
for( i = 0 ; aSource2[i] ; i +=2 )
{
@@ -135,7 +135,7 @@ void oldtestfile::test_file_002()
void oldtestfile::test_file_004()
{
#ifndef WIN32
- OUString base4( RTL_CONSTASCII_USTRINGPARAM( "file:///" TEST_VOLUME "bla/" ) );
+ OUString base4( "file:///" TEST_VOLUME "bla/" );
int i;
for( i = 0 ; aSource1[i] ; i +=2 )
{