diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2019-08-11 12:24:30 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2019-08-12 10:42:35 +0200 |
commit | fdad46f310569cb57fb618345647167b6fdda198 (patch) | |
tree | bec80abcd308630b9cd80bc2c5e0c8382477b88d /odk/examples | |
parent | d4cea44bf212da4365deb4593f5c1957798f6629 (diff) |
Fix typo
"an one"
Change-Id: Ic12d139acfdb32aaf0089c60609feaa653fd686b
Reviewed-on: https://gerrit.libreoffice.org/77259
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'odk/examples')
-rw-r--r-- | odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Interceptor.java | 2 | ||||
-rw-r--r-- | odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/OnewayExecutor.java | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Interceptor.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Interceptor.java index 4a6e9f9900b5..380f8da3cf5d 100644 --- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Interceptor.java +++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Interceptor.java @@ -143,7 +143,7 @@ public class Interceptor implements com.sun.star.frame.XFrameActionListener, /* - * In case we got an oneway listener callback - we had to use the office + * In case we got a oneway listener callback - we had to use the office * asynchronous then. This method is the callback from the started thread * (started inside the original oneway method). We found all parameters of * the original request packed inside a vector. Here we unpack it and diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/OnewayExecutor.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/OnewayExecutor.java index a86ff31defc1..8da2103aaa61 100644 --- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/OnewayExecutor.java +++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/OnewayExecutor.java @@ -38,7 +38,7 @@ import java.util.ArrayList; // __________ Implementation __________ /** - * It's not allowed to call synchronous back inside an oneway interface call. + * It's not allowed to call synchronous back inside a oneway interface call. * (see IOnewayLink too). So we start a thread (implemented by this class), which * gets all necessary parameters from the original called object and * call it back later inside his run() method. So the execution of such oneway call |