summaryrefslogtreecommitdiffstats
path: root/odk
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2018-01-14 12:50:47 +0100
committerJulien Nabet <serval2412@yahoo.fr>2018-01-14 16:24:04 +0100
commitcfffb09b3d6d46c500e3be3fe601a4ff6944d40e (patch)
tree9cb01bdb90949dd670b8bb30d23cf4be32cefc89 /odk
parentfix indent (diff)
downloadcore-cfffb09b3d6d46c500e3be3fe601a4ff6944d40e.tar.gz
core-cfffb09b3d6d46c500e3be3fe601a4ff6944d40e.zip
Fix typos
Change-Id: I2a578961837076ebce3c1fb2681b0785d1d490ac Reviewed-on: https://gerrit.libreoffice.org/47857 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'odk')
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/CustomizeView.java6
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/FunctionHelper.java4
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusView.java2
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/nativelib/windows/nativeview.c2
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/AsciiReplaceFilter.java2
5 files changed, 8 insertions, 8 deletions
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/CustomizeView.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/CustomizeView.java
index b8b3e4f7bfa2..0678ee009f1d 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/CustomizeView.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/CustomizeView.java
@@ -169,7 +169,7 @@ public class CustomizeView extends JPanel
* Note: Because we are listener status events too - hopefully
* we get a notification, if toggling was successfully or not.
* We use this information to update our check boxes again.
- * But such update doesn't force (hopefully) an action event. Otherwhise
+ * But such update doesn't force (hopefully) an action event. Otherwise
* we can produce a never ending recursion!
*/
private class ClickListener implements ActionListener,
@@ -248,7 +248,7 @@ public class CustomizeView extends JPanel
*
* @param aEvent
* describes the source which fire this event
- * Must be our internal saved frame. Otherwhise
+ * Must be our internal saved frame. Otherwise
* somewhere know us without a registration ...
*/
public void disposing(com.sun.star.lang.EventObject aEvent)
@@ -264,7 +264,7 @@ public class CustomizeView extends JPanel
/**
* If this java application shutdown - we must cancel all current existing
- * listener connections. Otherwhise the office will run into some
+ * listener connections. Otherwise the office will run into some
* DisposedExceptions if it tries to use these forgotten listener references.
* And of course it can die doing that.
* We are registered at a central object to be informed if the VM will exit.
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/FunctionHelper.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/FunctionHelper.java
index fee367d125b2..e50686c38cf6 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/FunctionHelper.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/FunctionHelper.java
@@ -364,7 +364,7 @@ public class FunctionHelper
// pass the window the frame as his new container window.
// It's necessary to do it first - before you call anything else there.
- // Otherwhise the frame throws some exceptions for "uninitialized state".
+ // Otherwise the frame throws some exceptions for "uninitialized state".
xFrame.initialize( xWindow );
// Insert the new frame in desktop hierarchy.
@@ -440,7 +440,7 @@ public class FunctionHelper
* (Note: Deregistration is part of this listener himself!)
*
* @return [XDispatch] It's the used dispatch object and can be used for deregistration of an optional listener.
- * Otherwhise caller can ignore it.
+ * Otherwise caller can ignore it.
*/
public static com.sun.star.frame.XDispatch execute(com.sun.star.frame.XFrame xFrame ,
com.sun.star.util.URL aURL ,
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusView.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusView.java
index 3131332e7d53..92ae178adc59 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusView.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusView.java
@@ -239,7 +239,7 @@ public class StatusView extends JPanel
/**
* If this java application shutdown - we must cancel all current existing
- * listener connections. Otherwhise the office will run into some
+ * listener connections. Otherwise the office will run into some
* DisposedExceptions if it tries to use these forgotten listener references.
* And of course it can die doing that.
* We are registered at a central object to be informed if the VM will exit.
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/nativelib/windows/nativeview.c b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/nativelib/windows/nativeview.c
index 750364c01cce..b7b13d6c640d 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/nativelib/windows/nativeview.c
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/nativelib/windows/nativeview.c
@@ -115,7 +115,7 @@ JNIEXPORT jlong JNICALL Java_NativeView_getNativeWindow
awt.FreeDrawingSurface(ds);
/* Register own window procedure
- Do it one times only! Otherwhise
+ Do it one times only! Otherwise
multiple instances will be registered
and calls on such construct produce
a stack overflow.
diff --git a/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/AsciiReplaceFilter.java b/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/AsciiReplaceFilter.java
index 2e83f4af76e1..cc4d5c5eafc1 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/AsciiReplaceFilter.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/AsciiReplaceFilter.java
@@ -216,7 +216,7 @@ public class AsciiReplaceFilter
* For external user of us we must provide our internal filter name
* (which is registered inside configuration package TypeDetection).
* User will be able then to ask there for further information about us.
- * Otherwhise we must implement a full featured XPropertySet...
+ * Otherwise we must implement a full featured XPropertySet...
*
* @return our internal filter name of configuration
*/