diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2014-02-09 10:14:25 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2014-02-09 10:14:25 +0100 |
commit | 5b066bc3efed187dd7e63973d2b9731a9eea31e8 (patch) | |
tree | 7e0cd5ad5ef4e101c21054b03a29b052116e9765 | |
parent | 94bc29cb71d08ebe039d5ce5b6b2762ac24cbb8f (diff) |
Typo: (a)synchronoues -> a(synchronous)
Change-Id: Ia3871d711308eb38ed6e0df81615966cc142030d
4 files changed, 5 insertions, 5 deletions
diff --git a/framework/source/services/frame.cxx b/framework/source/services/frame.cxx index 217a0963f9fb..553979d6777d 100644 --- a/framework/source/services/frame.cxx +++ b/framework/source/services/frame.cxx @@ -2667,7 +2667,7 @@ void SAL_CALL Frame::windowDeactivated( const css::lang::EventObject& aEvent ) t void SAL_CALL Frame::windowClosing( const css::lang::EventObject& ) throw( css::uno::RuntimeException ) { /* #i62088# - Some interceptor objects intercept our "internally asynchronoues implemented" dispatch call. + Some interceptor objects intercept our "internally asynchronous implemented" dispatch call. And they close this frame directly (means synchronous then). Means: Frame::windowClosing()->Frame::close() In such situation its not a good idea to hold this transaction count alive .-) diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/IOnewayLink.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/IOnewayLink.java index 22ce6388d1a8..33a6b3c79a4e 100644 --- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/IOnewayLink.java +++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/IOnewayLink.java @@ -39,9 +39,9 @@ import java.util.ArrayList; /** * We need a generic interface to forward any oneway uno interface method * by using threads to the original object. Reason: - * It's not allowed to call synchronoues back to the office if a java object + * It's not allowed to call synchronous back to the office if a java object * was called in a oneway declared interface method. Then it must be - * executed asynchronoues. To do so - a thread can be created which use this + * executed asynchronous. To do so - a thread can be created which use this * interface. It get the object, which whis to be called back and the type and * parameter of the original request. * diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/OnewayExecutor.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/OnewayExecutor.java index 355be64638da..51435cb5b6a2 100644 --- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/OnewayExecutor.java +++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/OnewayExecutor.java @@ -37,7 +37,7 @@ import java.util.ArrayList; // __________ Implementation __________ /** - * It's not allowed to call synchronoues back inside an oneway interface call. + * It's not allowed to call synchronous back inside an 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 diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusListener.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusListener.java index 89980b7fcf4c..29c4fffecda7 100644 --- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusListener.java +++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusListener.java @@ -57,7 +57,7 @@ import com.sun.star.uno.UnoRuntime; * internal holded dispatch object automaticly. * * Another reason for such extra class for listening: - * Most listener callbacks are asynchronoues [oneay] requests. + * Most listener callbacks are asynchronous [oneay] requests. * And it's not allowed to call back synchronously there. * So we must start threads for updating something internally. * |