summaryrefslogtreecommitdiff
path: root/odk
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2014-04-09 12:44:22 +0200
committerThomas Arnhold <thomas@arnhold.org>2014-04-14 12:31:58 +0200
commit2ada2b33757518891e002cd9372c6aa0c85b0a3f (patch)
tree5a30d3e74a0ab663a3438520e99da90dd18b26b9 /odk
parentc8e94ffb8cc8bedf7a572ca12931caa999733799 (diff)
typo: dependend -> dependent
Diffstat (limited to 'odk')
-rw-r--r--odk/examples/DevelopersGuide/ProfUNO/Lifetime/MyUnoObject.java2
-rw-r--r--odk/examples/java/Inspector/XInstanceInspector.idl2
-rw-r--r--odk/examples/java/Text/BookmarkInsertion.java2
-rw-r--r--odk/examples/java/Text/StyleCreation.java2
4 files changed, 4 insertions, 4 deletions
diff --git a/odk/examples/DevelopersGuide/ProfUNO/Lifetime/MyUnoObject.java b/odk/examples/DevelopersGuide/ProfUNO/Lifetime/MyUnoObject.java
index 1e2051a5a1b6..d5e828cf46e8 100644
--- a/odk/examples/DevelopersGuide/ProfUNO/Lifetime/MyUnoObject.java
+++ b/odk/examples/DevelopersGuide/ProfUNO/Lifetime/MyUnoObject.java
@@ -55,6 +55,6 @@ class MyUnoObject implements com.sun.star.uno.XInterface
}
System.out.println( "leaving" );
- // It is java VM dependend, whether the finalizer was called or not
+ // It is java VM dependent, whether the finalizer was called or not
}
}
diff --git a/odk/examples/java/Inspector/XInstanceInspector.idl b/odk/examples/java/Inspector/XInstanceInspector.idl
index 50b6bb6a0962..ca96a27e1c57 100644
--- a/odk/examples/java/Inspector/XInstanceInspector.idl
+++ b/odk/examples/java/Inspector/XInstanceInspector.idl
@@ -43,7 +43,7 @@ module org { module openoffice {
interface XInstanceInspector {
/**
* For a given instance this method displays all services, interfaces,
- * methods, attributes, and contents in a tree. All dependend
+ * methods, attributes, and contents in a tree. All dependent
* instances are also inspected and displayed, so the user could browse
* the tree. If you press the key "F1", the API-documentation from
* www.openoffice.org for the current instance will be displayed in a
diff --git a/odk/examples/java/Text/BookmarkInsertion.java b/odk/examples/java/Text/BookmarkInsertion.java
index 71cadb4b0594..a8da58eae355 100644
--- a/odk/examples/java/Text/BookmarkInsertion.java
+++ b/odk/examples/java/Text/BookmarkInsertion.java
@@ -114,7 +114,7 @@ public class BookmarkInsertion {
xDocMSF = UnoRuntime.queryInterface(
com.sun.star.lang.XMultiServiceFactory.class, xTextDocument);
- // the bookmark service is a context dependend service, you need
+ // the bookmark service is a context dependent service, you need
// the MultiServiceFactory from the document
Object xObject = xDocMSF.createInstance("com.sun.star.text.Bookmark");
diff --git a/odk/examples/java/Text/StyleCreation.java b/odk/examples/java/Text/StyleCreation.java
index 4c9643514d24..966d942e9505 100644
--- a/odk/examples/java/Text/StyleCreation.java
+++ b/odk/examples/java/Text/StyleCreation.java
@@ -57,7 +57,7 @@ public class StyleCreation {
com.sun.star.text.XTextDocument xTextDocument = null;
xTextDocument = createTextdocument(xDesktop);
- // the service '..ParagraphStyle' is context dependend, you need
+ // the service '..ParagraphStyle' is context dependent, you need
// the multi service factory from the document to use the service
com.sun.star.lang.XMultiServiceFactory xDocMSF =
UnoRuntime.queryInterface(