diff options
4 files changed, 4 insertions, 4 deletions
diff --git a/dtrans/source/win32/clipb/WinClipboard.hxx b/dtrans/source/win32/clipb/WinClipboard.hxx index c0058593ed40..db3f1ab188ed 100644 --- a/dtrans/source/win32/clipb/WinClipboard.hxx +++ b/dtrans/source/win32/clipb/WinClipboard.hxx @@ -45,7 +45,7 @@ class CWinClipbImpl; // class instance // watch out: we are using only one static member variable and not a list // because we assume to be instantiated only once -// this will be assured by an OneInstanceFactory of the service and not +// this will be assured by a OneInstanceFactory of the service and not // by this class! // helper class, so that the mutex is constructed 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 diff --git a/svx/source/form/fmscriptingenv.cxx b/svx/source/form/fmscriptingenv.cxx index 878639570bd9..bddfc8827b6f 100644 --- a/svx/source/form/fmscriptingenv.cxx +++ b/svx/source/form/fmscriptingenv.cxx @@ -183,7 +183,7 @@ namespace svxform bool FormScriptListener::impl_allowAsynchronousCall_nothrow( const OUString& _rListenerType, const OUString& _rMethodName ) { // This used to be implemented as: - // is (_rListenerType + "::" + _rMethodName) an oneway function? + // is (_rListenerType + "::" + _rMethodName) a oneway function? // since we got rid of the notion of oneway, this is the list // of oneway methods, autogenerated by postprocessing of // commitdiff 90eac3e69749a9227c4b6902b1f3cef1e338c6d1 |