From cfffb09b3d6d46c500e3be3fe601a4ff6944d40e Mon Sep 17 00:00:00 2001 From: Andrea Gelmini Date: Sun, 14 Jan 2018 12:50:47 +0100 Subject: Fix typos Change-Id: I2a578961837076ebce3c1fb2681b0785d1d490ac Reviewed-on: https://gerrit.libreoffice.org/47857 Tested-by: Jenkins Reviewed-by: Julien Nabet --- .../DevelopersGuide/OfficeDev/DesktopEnvironment/CustomizeView.java | 6 +++--- .../OfficeDev/DesktopEnvironment/FunctionHelper.java | 4 ++-- .../DevelopersGuide/OfficeDev/DesktopEnvironment/StatusView.java | 2 +- .../OfficeDev/DesktopEnvironment/nativelib/windows/nativeview.c | 2 +- .../OfficeDev/FilterDevelopment/AsciiFilter/AsciiReplaceFilter.java | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) (limited to 'odk') 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 */ -- cgit