summaryrefslogtreecommitdiffstats
path: root/bridges/test/testserver.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'bridges/test/testserver.cxx')
-rw-r--r--bridges/test/testserver.cxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/bridges/test/testserver.cxx b/bridges/test/testserver.cxx
index 17b40c123cc1..fe85514872dd 100644
--- a/bridges/test/testserver.cxx
+++ b/bridges/test/testserver.cxx
@@ -1,3 +1,4 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -159,7 +160,7 @@ void MyThread::run()
OUString( RTL_CONSTASCII_USTRINGPARAM("my test string")) , 2 );
}
printf( "all oneway are send\n" );
- rCallMe->call( OUString::createFromAscii( "reverse call me test finished" ) , 0 );
+ rCallMe->call( OUString( RTL_CONSTASCII_USTRINGPARAM( "reverse call me test finished" )) , 0 );
printf( "revers callme test finished\n" );
}
}
@@ -251,3 +252,5 @@ int main( int argc, char *argv[] )
}
return 0;
}
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */