summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2004-02-02 18:56:29 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2004-02-02 18:56:29 +0000
commit892a2869b093ca3595dbe99df4032e44226ff268 (patch)
tree3ad4e174741f1ac3088a7f84ff1c2c6237fa8536
parent226e053a4e036ecf0c003c40471686fe769fedf9 (diff)
INTEGRATION: CWS geordi2q14 (1.3.72); FILE MERGED
2004/01/30 13:11:20 hr 1.3.72.1: #111934#: merge CWS ooo111fix2
-rw-r--r--odk/examples/DevelopersGuide/Drawing/ObjectTransformationDemo.java6
-rw-r--r--odk/examples/DevelopersGuide/Drawing/Organigram.java6
-rw-r--r--odk/examples/DevelopersGuide/Drawing/PresentationDemo.java8
3 files changed, 10 insertions, 10 deletions
diff --git a/odk/examples/DevelopersGuide/Drawing/ObjectTransformationDemo.java b/odk/examples/DevelopersGuide/Drawing/ObjectTransformationDemo.java
index b6ddeecbc86f..38558ac60945 100644
--- a/odk/examples/DevelopersGuide/Drawing/ObjectTransformationDemo.java
+++ b/odk/examples/DevelopersGuide/Drawing/ObjectTransformationDemo.java
@@ -2,9 +2,9 @@
*
* $RCSfile: ObjectTransformationDemo.java,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: hr $ $Date: 2003-06-30 15:24:27 $
+ * last change: $Author: hr $ $Date: 2004-02-02 19:55:45 $
*
* The Contents of this file are made available subject to the terms of
* the BSD license.
@@ -82,7 +82,7 @@ public class ObjectTransformationDemo
if ( args.length >= 1 )
sConnection = args[ 1 ];
else
- sConnection = "uno:socket,host=localhost,port=8100;urp;StarOffice.ServiceManager";
+ sConnection = "uno:socket,host=localhost,port=2083;urp;StarOffice.ServiceManager";
XMultiServiceFactory xServiceFactory =
Helper.connect( sConnection );
diff --git a/odk/examples/DevelopersGuide/Drawing/Organigram.java b/odk/examples/DevelopersGuide/Drawing/Organigram.java
index 0e3c896ccdef..072373fd7a48 100644
--- a/odk/examples/DevelopersGuide/Drawing/Organigram.java
+++ b/odk/examples/DevelopersGuide/Drawing/Organigram.java
@@ -2,9 +2,9 @@
*
* $RCSfile: Organigram.java,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: hr $ $Date: 2003-06-30 15:24:40 $
+ * last change: $Author: hr $ $Date: 2004-02-02 19:56:05 $
*
* The Contents of this file are made available subject to the terms of
* the BSD license.
@@ -84,7 +84,7 @@ public class Organigram {
}
public void drawOrganigram() throws java.lang.Exception {
xRemoteServiceManager = this.getRemoteServiceManager(
- "uno:socket,host=localhost,port=8100;urp;StarOffice.ServiceManager");
+ "uno:socket,host=localhost,port=2083;urp;StarOffice.ServiceManager");
Object desktop = xRemoteServiceManager.createInstanceWithContext(
"com.sun.star.frame.Desktop", xRemoteContext);
XComponentLoader xComponentLoader = (XComponentLoader)UnoRuntime.queryInterface(
diff --git a/odk/examples/DevelopersGuide/Drawing/PresentationDemo.java b/odk/examples/DevelopersGuide/Drawing/PresentationDemo.java
index f61f32cec28c..69f63a98b603 100644
--- a/odk/examples/DevelopersGuide/Drawing/PresentationDemo.java
+++ b/odk/examples/DevelopersGuide/Drawing/PresentationDemo.java
@@ -2,9 +2,9 @@
*
* $RCSfile: PresentationDemo.java,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: hr $ $Date: 2003-06-30 15:25:07 $
+ * last change: $Author: hr $ $Date: 2004-02-02 19:56:29 $
*
* The Contents of this file are made available subject to the terms of
* the BSD license.
@@ -70,7 +70,7 @@ import com.sun.star.awt.*;
// This demo will demonstrate how to create a presentation using the Office API
// The first parameter describes the connection that is to use. If there is no parameter
-// "uno:socket,host=localhost,port=8100;urp;StarOffice.ServiceManager" is used.
+// "uno:socket,host=localhost,port=2083;urp;StarOffice.ServiceManager" is used.
public class PresentationDemo
@@ -84,7 +84,7 @@ public class PresentationDemo
if ( args.length >= 1 )
sConnection = args[ 1 ];
else
- sConnection = "uno:socket,host=localhost,port=8100;urp;StarOffice.ServiceManager";
+ sConnection = "uno:socket,host=localhost,port=2083;urp;StarOffice.ServiceManager";
XMultiServiceFactory xServiceFactory =
Helper.connect( sConnection );