diff options
author | Andras Timar <atimar@suse.com> | 2012-01-11 19:21:33 +0100 |
---|---|---|
committer | Andras Timar <atimar@suse.com> | 2012-01-11 19:25:45 +0100 |
commit | aab14cb9fbc7d82b804a89e4cc61fb874c8636c8 (patch) | |
tree | 06076784fd47291174d9d51811da496191ae5cf4 /odk | |
parent | 8a3b584528e30f346cbab34141ee088eea16020c (diff) |
fix prefix of command line switches (-- instead of -)
Diffstat (limited to 'odk')
5 files changed, 5 insertions, 5 deletions
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Install.txt b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Install.txt index fc7c95afbb98..79a1ee2bfcc5 100644 --- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Install.txt +++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Install.txt @@ -6,5 +6,5 @@ (5) copy from an existing java installation the runtime library "jawt" (e.g. jawt.dll for windows) into this directory (6) copy "api/<platform>/bin/nativelib.dll" (for windows) to "api/<platform>/class" -(7) start an office : "soffice -accept=socket,host=localhost,port=2083;urp;" +(7) start an office : "soffice --accept=socket,host=localhost,port=2083;urp;" (8) goto "api/<platform>/class" and start java applet: "java -jar desktop.jar" diff --git a/odk/examples/DevelopersGuide/ProfUNO/CppBinding/Makefile b/odk/examples/DevelopersGuide/ProfUNO/CppBinding/Makefile index 23c86e57c5ed..bb1dfc20308a 100644 --- a/odk/examples/DevelopersGuide/ProfUNO/CppBinding/Makefile +++ b/odk/examples/DevelopersGuide/ProfUNO/CppBinding/Makefile @@ -95,7 +95,7 @@ ProUNOCppBindingExample : $(APP1_BINARY) $(APP2_BINARY) @echo $(SQM) $(SQM)the additional office types via the UNO environment variable -env:URE_MORE_TYPES=... @echo $(SQM) $(SQM)Before you can run this example you have to start your office in listening mode. @echo - - @echo $(SQM) $(SQM)soffice "$(QM)-accept=socket,host=localhost,port=2083;urp;StarOffice.ServiceManager$(QM)" + @echo $(SQM) $(SQM)soffice "$(QM)--accept=socket,host=localhost,port=2083;urp;StarOffice.ServiceManager$(QM)" @echo ----- @echo Please use one of the following commands to execute the examples! @echo - diff --git a/odk/examples/DevelopersGuide/ProfUNO/InterprocessConn/Makefile b/odk/examples/DevelopersGuide/ProfUNO/InterprocessConn/Makefile index deaade0b9d81..e0565ddad175 100644 --- a/odk/examples/DevelopersGuide/ProfUNO/InterprocessConn/Makefile +++ b/odk/examples/DevelopersGuide/ProfUNO/InterprocessConn/Makefile @@ -70,7 +70,7 @@ $(EXAMPLE_NAME) : $(CLASSFILES) @echo Note: For these examples you need a running office listening on port 2083. @echo $(SQM) $(SQM)Before you run these examples you have to start your office with @echo - - @echo $(SQM) $(SQM)soffice "$(QM)-accept=socket,host=localhost,port=2083;urp;StarOffice.ServiceManager$(QM)" + @echo $(SQM) $(SQM)soffice "$(QM)--accept=socket,host=localhost,port=2083;urp;StarOffice.ServiceManager$(QM)" @echo ----- @echo Please use one of the following commands to execute the examples! @echo - diff --git a/odk/examples/cpp/DocumentLoader/Makefile b/odk/examples/cpp/DocumentLoader/Makefile index 02a872a46fa2..488926254d59 100644 --- a/odk/examples/cpp/DocumentLoader/Makefile +++ b/odk/examples/cpp/DocumentLoader/Makefile @@ -94,7 +94,7 @@ CppDocumentLoaderExample : $(OUT_BIN)/DocumentLoader$(EXE_EXT) @echo $(SQM) $(SQM)the additional office types via the UNO environment variable -env:URE_MORE_TYPES=... @echo $(SQM) $(SQM)Before you can run this example you have to start your office in listening mode. @echo - - @echo $(SQM) $(SQM)soffice "$(QM)-accept=socket,host=localhost,port=2083;urp;StarOffice.ServiceManager$(QM)" + @echo $(SQM) $(SQM)soffice "$(QM)--accept=socket,host=localhost,port=2083;urp;StarOffice.ServiceManager$(QM)" @echo -------------------------------------------------------------------------------- %.run: $(OUT_BIN)/DocumentLoader$(EXE_EXT) diff --git a/odk/examples/examples.html b/odk/examples/examples.html index cbc6732c012e..9271abeae940 100644 --- a/odk/examples/examples.html +++ b/odk/examples/examples.html @@ -443,7 +443,7 @@ running this program you should invoke the office with the following command: <blockquote> - <code>soffice "-accept=socket,host=localhost,port=2083;urp;StarOffice.ServiceManager"</code> + <code>soffice "--accept=socket,host=localhost,port=2083;urp;StarOffice.ServiceManager"</code> </blockquote> You can also customize the mentioned host and port to your needs. </td> |