Kaydet (Commit) 5b066bc3 authored tarafından Julien Nabet's avatar Julien Nabet

Typo: (a)synchronoues -> a(synchronous)

Change-Id: Ia3871d711308eb38ed6e0df81615966cc142030d
üst 94bc29cb
...@@ -2667,7 +2667,7 @@ void SAL_CALL Frame::windowDeactivated( const css::lang::EventObject& aEvent ) t ...@@ -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 ) void SAL_CALL Frame::windowClosing( const css::lang::EventObject& ) throw( css::uno::RuntimeException )
{ {
/* #i62088# /* #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). And they close this frame directly (means synchronous then).
Means: Frame::windowClosing()->Frame::close() Means: Frame::windowClosing()->Frame::close()
In such situation its not a good idea to hold this transaction count alive .-) In such situation its not a good idea to hold this transaction count alive .-)
......
...@@ -39,9 +39,9 @@ import java.util.ArrayList; ...@@ -39,9 +39,9 @@ import java.util.ArrayList;
/** /**
* We need a generic interface to forward any oneway uno interface method * We need a generic interface to forward any oneway uno interface method
* by using threads to the original object. Reason: * 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 * 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 * interface. It get the object, which whis to be called back and the type and
* parameter of the original request. * parameter of the original request.
* *
......
...@@ -37,7 +37,7 @@ import java.util.ArrayList; ...@@ -37,7 +37,7 @@ import java.util.ArrayList;
// __________ Implementation __________ // __________ 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 * (see IOnewayLink too). So we start a thread (implemented by this class), which
* gets all necessary parameters from the original called object and * 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 * call it back later inside his run() method. So the execution of such oneway call
......
...@@ -57,7 +57,7 @@ import com.sun.star.uno.UnoRuntime; ...@@ -57,7 +57,7 @@ import com.sun.star.uno.UnoRuntime;
* internal holded dispatch object automaticly. * internal holded dispatch object automaticly.
* *
* Another reason for such extra class for listening: * 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. * And it's not allowed to call back synchronously there.
* So we must start threads for updating something internally. * So we must start threads for updating something internally.
* *
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment