summaryrefslogtreecommitdiffstats
path: root/odk/examples/java
diff options
context:
space:
mode:
Diffstat (limited to 'odk/examples/java')
-rw-r--r--odk/examples/java/EmbedDocument/Container1/EmbedContApp.java2
-rw-r--r--odk/examples/java/Inspector/Inspector.java2
-rw-r--r--odk/examples/java/Spreadsheet/SCalc.java4
3 files changed, 4 insertions, 4 deletions
diff --git a/odk/examples/java/EmbedDocument/Container1/EmbedContApp.java b/odk/examples/java/EmbedDocument/Container1/EmbedContApp.java
index 2f198376652b..a275c27eaf7f 100644
--- a/odk/examples/java/EmbedDocument/Container1/EmbedContApp.java
+++ b/odk/examples/java/EmbedDocument/Container1/EmbedContApp.java
@@ -388,7 +388,7 @@ public class EmbedContApp extends Applet implements MouseListener, XEmbeddedClie
if ( m_xStorage == null )
{
JOptionPane.showMessageDialog( m_aFrame,
- "No storage for oned file!",
+ "No storage for owned file!",
"Error:",
JOptionPane.ERROR_MESSAGE );
return;
diff --git a/odk/examples/java/Inspector/Inspector.java b/odk/examples/java/Inspector/Inspector.java
index 18d8d909a449..18a75bcdb469 100644
--- a/odk/examples/java/Inspector/Inspector.java
+++ b/odk/examples/java/Inspector/Inspector.java
@@ -88,7 +88,7 @@ public class Inspector{
private TDocSupplier oTDocSupplier;
private Introspector m_oIntrospector = null;
// TODO: improve these strings:
- private static final String sWRONGINSTALLATIONPATH = "Your selected path does not refer to an SDK-Installation!";
+ private static final String sWRONGINSTALLATIONPATH = "Your selected path does not refer to a SDK-Installation!";
/** Creates a new instance of Dialog */
public _Inspector(XComponentContext _xComponentContext) {
m_xComponentContext = _xComponentContext;
diff --git a/odk/examples/java/Spreadsheet/SCalc.java b/odk/examples/java/Spreadsheet/SCalc.java
index 96fdc1ad429d..85eea9e0fd04 100644
--- a/odk/examples/java/Spreadsheet/SCalc.java
+++ b/odk/examples/java/Spreadsheet/SCalc.java
@@ -307,7 +307,7 @@ public class SCalc {
XChartDocument xChart = UnoRuntime.queryInterface(
XChartDocument.class,oInt);
XDiagram oDiag = xChart.getDiagram();
- System.out.println("Change Diagramm to 3D");
+ System.out.println("Change Diagram to 3D");
XPropertySet oCPS = UnoRuntime.queryInterface(
XPropertySet.class, oDiag );
oCPS.setPropertyValue("Dim3D", Boolean.TRUE);
@@ -317,7 +317,7 @@ public class SCalc {
XPropertySet.class, xChart.getTitle() );
oTPS.setPropertyValue("String","The new title");
} catch (Exception e){
- System.err.println("Changin Properties failed "+e);
+ System.err.println("Changing Properties failed "+e);
e.printStackTrace(System.err);
}