summaryrefslogtreecommitdiff
path: root/odk
diff options
context:
space:
mode:
authorOtto Kekäläinen <otto@seravo.fi>2016-07-03 20:24:00 +0300
committerjan iversen <jani@documentfoundation.org>2016-07-04 06:11:36 +0000
commit428e23f4f7025506e767d895e9b46492a8432aed (patch)
treeec767267ad2afc8ec3bf486da7cb9da2c567922d /odk
parent61d95c70c0d4404a24064a58f3ccc3adf0b5e7e2 (diff)
Fix some spelling errors in comments and strings
Change-Id: Iecd6b5e13d6be14651f77d8e37f01117ba15a11e Reviewed-on: https://gerrit.libreoffice.org/26883 Reviewed-by: jan iversen <jani@documentfoundation.org> Tested-by: jan iversen <jani@documentfoundation.org>
Diffstat (limited to 'odk')
-rw-r--r--odk/examples/DevelopersGuide/Charts/CalcHelper.java2
-rw-r--r--odk/examples/DevelopersGuide/Charts/Makefile2
-rw-r--r--odk/examples/DevelopersGuide/Components/JavaComponent/Makefile2
-rw-r--r--odk/examples/DevelopersGuide/GUI/UnoDialogSample2.java2
-rw-r--r--odk/examples/java/DocumentHandling/DocumentConverter.java2
5 files changed, 5 insertions, 5 deletions
diff --git a/odk/examples/DevelopersGuide/Charts/CalcHelper.java b/odk/examples/DevelopersGuide/Charts/CalcHelper.java
index 76844c5cca64..d7d932282339 100644
--- a/odk/examples/DevelopersGuide/Charts/CalcHelper.java
+++ b/odk/examples/DevelopersGuide/Charts/CalcHelper.java
@@ -122,7 +122,7 @@ public class CalcHelper
- /** Insert a chart using the given name as name of the OLE object and the range as correspoding
+ /** Insert a chart using the given name as name of the OLE object and the range as corresponding
range of data to be used for rendering. The chart is placed in the sheet for charts at
position aUpperLeft extending as large as given in aExtent.
diff --git a/odk/examples/DevelopersGuide/Charts/Makefile b/odk/examples/DevelopersGuide/Charts/Makefile
index d6ff9edcdc18..dbb55d51c90a 100644
--- a/odk/examples/DevelopersGuide/Charts/Makefile
+++ b/odk/examples/DevelopersGuide/Charts/Makefile
@@ -137,7 +137,7 @@ $(SAMPLE_CLASS_OUT)/%/manifest.xml :
@echo $(SQM) $(SQM)manifest:full-path="$(QM)$(COMP_COMPONENTS)$(QM)"/$(CSEP)>> $@
@echo $(OSEP)/manifest:manifest$(CSEP) >> $@
-# rule for component pacakge file
+# rule for component package file
$(COMP_PACKAGE) : $(COMP_JAR) $(COMP_UNOPKG_MANIFEST) $(COMP_COMPONENTS)
-$(DEL) $(subst \\,\,$(subst /,$(PS),$@))
-$(MKDIR) $(subst /,$(PS),$(@D))
diff --git a/odk/examples/DevelopersGuide/Components/JavaComponent/Makefile b/odk/examples/DevelopersGuide/Components/JavaComponent/Makefile
index b2a203cffb78..d78259e36936 100644
--- a/odk/examples/DevelopersGuide/Components/JavaComponent/Makefile
+++ b/odk/examples/DevelopersGuide/Components/JavaComponent/Makefile
@@ -156,7 +156,7 @@ $(OUT_COMP_CLASS)/%/manifest.xml :
@echo $(SQM) $(SQM)manifest:full-path="$(QM)$(COMP_COMPONENTS)$(QM)"/$(CSEP)>> $@
@echo $(OSEP)/manifest:manifest$(CSEP) >> $@
-# rule for component pacakge file
+# rule for component package file
$(COMP_PACKAGE) : $(COMP_RDB) $(COMP_JAR) $(COMP_UNOPKG_MANIFEST) $(COMP_COMPONENTS)
-$(DEL) $(subst \\,\,$(subst /,$(PS),$@))
-$(MKDIR) $(subst /,$(PS),$(@D))
diff --git a/odk/examples/DevelopersGuide/GUI/UnoDialogSample2.java b/odk/examples/DevelopersGuide/GUI/UnoDialogSample2.java
index 0374564dcac0..22287fc0ebac 100644
--- a/odk/examples/DevelopersGuide/GUI/UnoDialogSample2.java
+++ b/odk/examples/DevelopersGuide/GUI/UnoDialogSample2.java
@@ -102,7 +102,7 @@ public class UnoDialogSample2 extends UnoDialogSample {
oUnoDialogSample2 = new UnoDialogSample2(xContext, xMCF, oUnoObject);
oUnoDialogSample2.initialize( new String[] {"Height", "Moveable", "Name","PositionX","PositionY", "Step", "TabIndex","Title","Width"},
new Object[] { Integer.valueOf(nDialogHeight), Boolean.TRUE, "Dialog1", Integer.valueOf(102),Integer.valueOf(41), Integer.valueOf(1), Short.valueOf((short) 0), "Inspect a Uno-Object", Integer.valueOf(nDialogWidth)});
- String sIntroLabel = "This Dialog lists information about a given Uno-Object.\nIt offers a view to inspect all suppported servicenames, exported interfaces, methods and properties.";
+ String sIntroLabel = "This Dialog lists information about a given Uno-Object.\nIt offers a view to inspect all supported servicenames, exported interfaces, methods and properties.";
oUnoDialogSample2.insertMultiLineFixedText(nControlPosX, 27, nControlWidth, 4, 1, sIntroLabel);
// get the data from the UNO object...
String[] sSupportedServiceNames = oUnoDialogSample2.getSupportedServiceNames();
diff --git a/odk/examples/java/DocumentHandling/DocumentConverter.java b/odk/examples/java/DocumentHandling/DocumentConverter.java
index 6788896e318a..386af9f1f8fc 100644
--- a/odk/examples/java/DocumentHandling/DocumentConverter.java
+++ b/odk/examples/java/DocumentHandling/DocumentConverter.java
@@ -95,7 +95,7 @@ public class DocumentConverter {
} else {
// Converting the document to the favoured type
try {
- // Composing the URL by replacing all backslashs
+ // Composing the URL by replacing all backslashes
String sUrl = "file:///"
+ entries[ i ].getAbsolutePath().replace( '\\', '/' );