summaryrefslogtreecommitdiff
path: root/odk
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2013-05-15 10:42:04 +0300
committerTor Lillqvist <tml@iki.fi>2013-05-15 11:14:28 +0300
commitcb6d67c21f11811c5bc023b9565c1c1b1f4081fa (patch)
treeff8a4b192a2ca846d32111732563432244135910 /odk
parent1a357b7394ac7b48b72821bff1aae4706265d7a4 (diff)
Spelling "separate" (etc) correctly is hard
Diffstat (limited to 'odk')
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Interceptor.java2
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusView.java2
-rw-r--r--odk/examples/DevelopersGuide/Text/TextDocuments.java4
-rw-r--r--odk/source/com/sun/star/lib/loader/InstallationFinder.java2
4 files changed, 5 insertions, 5 deletions
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Interceptor.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Interceptor.java
index 47dec3afbbc7..2524aaec8978 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Interceptor.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Interceptor.java
@@ -466,7 +466,7 @@ public class Interceptor implements com.sun.star.frame.XFrameActionListener,
if (m_bDead)
return null;
}
- // Resolve any request seperatly by using own "dispatch()" method.
+ // Resolve any request separately by using own "dispatch()" method.
// Note: Don't pack return list if "null" objects occure!
int nCount = lDescriptor.length;
com.sun.star.frame.XDispatch[] lDispatcher = new com.sun.star.frame.XDispatch[nCount];
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusView.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusView.java
index f4a5c5f7487f..17c117f43cba 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusView.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusView.java
@@ -43,7 +43,7 @@ import java.lang.String;
/**
* Implement a view to show status information
* of currently loaded document of a document view.
- * It use seperate listener threads to get this information
+ * It use separate listener threads to get this information
* and actualize it automaticly if frame broadcast changes of
* his contained document.
* Threads are neccessary to prevent this view against deadlocks.
diff --git a/odk/examples/DevelopersGuide/Text/TextDocuments.java b/odk/examples/DevelopersGuide/Text/TextDocuments.java
index 0762a47a3ef4..b981e231a738 100644
--- a/odk/examples/DevelopersGuide/Text/TextDocuments.java
+++ b/odk/examples/DevelopersGuide/Text/TextDocuments.java
@@ -915,14 +915,14 @@ public class TextDocuments {
// Make sure that the autotext group contains at least one block
if ( aBlockNames.length > 0 )
{
- // Split the current cell vertically into two seperate cells
+ // Split the current cell vertically into two separate cells
xTableCursor.splitRange ( (short) 1, false );
// Put the cursor in the newly created right hand cell
// and select it
xTableCursor.goRight ( (short) 1, false );
- // Split this cell horizontally to make a seperate cell
+ // Split this cell horizontally to make a separate cell
// for each Autotext block
if ( ( aBlockNames.length -1 ) > 0 )
xTableCursor.splitRange (
diff --git a/odk/source/com/sun/star/lib/loader/InstallationFinder.java b/odk/source/com/sun/star/lib/loader/InstallationFinder.java
index 087b716a159c..e307996ff643 100644
--- a/odk/source/com/sun/star/lib/loader/InstallationFinder.java
+++ b/odk/source/com/sun/star/lib/loader/InstallationFinder.java
@@ -303,7 +303,7 @@ final class InstallationFinder {
return null;
}
- // empty standard error stream in a seperate thread
+ // empty standard error stream in a separate thread
StreamGobbler gobbler = new StreamGobbler( proc.getErrorStream() );
gobbler.start();