From aab14cb9fbc7d82b804a89e4cc61fb874c8636c8 Mon Sep 17 00:00:00 2001 From: Andras Timar Date: Wed, 11 Jan 2012 19:21:33 +0100 Subject: fix prefix of command line switches (-- instead of -) --- cppuhelper/source/bootstrap.cxx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'cppuhelper') diff --git a/cppuhelper/source/bootstrap.cxx b/cppuhelper/source/bootstrap.cxx index 2fb8ccde427d..05d404b49728 100644 --- a/cppuhelper/source/bootstrap.cxx +++ b/cppuhelper/source/bootstrap.cxx @@ -567,17 +567,17 @@ Reference< XComponentContext > SAL_CALL bootstrap() // accept string OSL_ASSERT( buf.getLength() == 0 ); - buf.appendAscii( RTL_CONSTASCII_STRINGPARAM( "-accept=pipe,name=" ) ); + buf.appendAscii( RTL_CONSTASCII_STRINGPARAM( "--accept=pipe,name=" ) ); buf.append( sPipeName ); buf.appendAscii( RTL_CONSTASCII_STRINGPARAM( ";urp;" ) ); // arguments OUString args [] = { - OUSTR( "-nologo" ), - OUSTR( "-nodefault" ), - OUSTR( "-norestore" ), - OUSTR( "-nocrashreport" ), - OUSTR( "-nolockcheck" ), + OUSTR( "--nologo" ), + OUSTR( "--nodefault" ), + OUSTR( "--norestore" ), + OUSTR( "--nocrashreport" ), + OUSTR( "--nolockcheck" ), buf.makeStringAndClear() }; rtl_uString * ar_args [] = { -- cgit