summaryrefslogtreecommitdiffstats
path: root/odk
diff options
context:
space:
mode:
Diffstat (limited to 'odk')
-rw-r--r--odk/examples/DevelopersGuide/Components/Addons/JobsAddon/AsyncJob.java2
-rw-r--r--odk/examples/DevelopersGuide/Drawing/DrawingDemo.java2
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/FunctionHelper.java4
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/IOnewayLink.java2
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/OnewayExecutor.java2
5 files changed, 6 insertions, 6 deletions
diff --git a/odk/examples/DevelopersGuide/Components/Addons/JobsAddon/AsyncJob.java b/odk/examples/DevelopersGuide/Components/Addons/JobsAddon/AsyncJob.java
index f5ef2a97088c..9b55929d870a 100644
--- a/odk/examples/DevelopersGuide/Components/Addons/JobsAddon/AsyncJob.java
+++ b/odk/examples/DevelopersGuide/Components/Addons/JobsAddon/AsyncJob.java
@@ -56,7 +56,7 @@ public class AsyncJob extends WeakBase implements XServiceInfo, XAsyncJob
public static final String[] SERVICENAMES = {"com.sun.star.task.AsyncJob"};
/** the const uno implementation name.
- * It must be an unique value! The best naming schema seems to use
+ * It must be a unique value! The best naming schema seems to use
* a registered domain in reverse order ...
*/
public static final String IMPLEMENTATIONNAME = "com.sun.star.comp.framework.java.services.AsyncJob";
diff --git a/odk/examples/DevelopersGuide/Drawing/DrawingDemo.java b/odk/examples/DevelopersGuide/Drawing/DrawingDemo.java
index b8b5ef321604..f71197cf6d61 100644
--- a/odk/examples/DevelopersGuide/Drawing/DrawingDemo.java
+++ b/odk/examples/DevelopersGuide/Drawing/DrawingDemo.java
@@ -170,7 +170,7 @@ public class DrawingDemo
XNamed xNamed = UnoRuntime.queryInterface(
XNamed.class, xLastPage );
- // beware, the page must have an unique name
+ // beware, the page must have a unique name
xNamed.setName( sLastPageName );
}
catch( Exception ex )
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/FunctionHelper.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/FunctionHelper.java
index e50686c38cf6..030c8f9b6ede 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/FunctionHelper.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/FunctionHelper.java
@@ -806,12 +806,12 @@ public class FunctionHelper
/**
- * Try to find an unique frame name, which isn't currently used inside
+ * Try to find a unique frame name, which isn't currently used inside
* remote office instance. Because we create top level frames
* only, it's enough to check the names of existing child frames on the
* desktop only.
*
- * should represent an unique frame name, which currently isn't
+ * should represent a unique frame name, which currently isn't
* used inside the remote office frame tree
* (Couldn't guaranteed for a real multithreaded environment.
* But we try it ...)
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/IOnewayLink.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/IOnewayLink.java
index f8c1fdb39b1f..c6732155d2dc 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/IOnewayLink.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/IOnewayLink.java
@@ -53,7 +53,7 @@ public interface IOnewayLink
/**
* @param nRequest
- * The two user of this callback can define an unique number,
+ * The two user of this callback can define a unique number,
* which identify the type of original interface method. So the called
* interface object can decide, which action will be necessary.
*
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/OnewayExecutor.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/OnewayExecutor.java
index 660f9f360ba6..a86ff31defc1 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/OnewayExecutor.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/OnewayExecutor.java
@@ -88,7 +88,7 @@ class OnewayExecutor extends Thread
* and parameters of the original request.
*
* @param nRequest
- * The two user of this callback can define an unique number,
+ * The two user of this callback can define a unique number,
* which identify the type of original interface method.
* So the called interface object can decide, which action will be
* necessary.