[Libreoffice-commits] core.git: framework/inc framework/source include/unotools odk/examples

Andrea Gelmini (via logerrit) logerrit at kemper.freedesktop.org
Mon Aug 19 09:35:05 UTC 2019


 framework/inc/dispatch/interceptionhelper.hxx                                 |    4 ++--
 framework/source/services/desktop.cxx                                         |    2 +-
 include/unotools/cmdoptions.hxx                                               |    2 +-
 odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/DocumentView.java   |    2 +-
 odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/OnewayExecutor.java |    4 ++--
 odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/ViewContainer.java  |    4 ++--
 6 files changed, 9 insertions(+), 9 deletions(-)

New commits:
commit b11611ffac5223f62bdecde023b6f3c456d327f2
Author:     Andrea Gelmini <andrea.gelmini at gelma.net>
AuthorDate: Fri Aug 16 15:50:41 2019 +0200
Commit:     Samuel Mehrbrodt <Samuel.Mehrbrodt at cib.de>
CommitDate: Mon Aug 19 11:34:21 2019 +0200

    Fix typos
    
    To complete
    https://gerrit.libreoffice.org/#/c/77567/
    
    Change-Id: I9f56eb308ff9b23c4259a0abae60ac2f97038393
    Reviewed-on: https://gerrit.libreoffice.org/77589
    Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>
    Tested-by: Jenkins
    Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt at cib.de>

diff --git a/framework/inc/dispatch/interceptionhelper.hxx b/framework/inc/dispatch/interceptionhelper.hxx
index fd8e342c4c34..fbc8c33927bc 100644
--- a/framework/inc/dispatch/interceptionhelper.hxx
+++ b/framework/inc/dispatch/interceptionhelper.hxx
@@ -221,7 +221,7 @@ class InterceptionHelper : public  ::cppu::WeakImplHelper<
             @attention  We don't check for double registrations here!
 
             @param      xInterceptor
-                        reference to interceptor, which wish to be registered here.
+                        reference to interceptor, which wishes to be registered here.
 
             @throw      A RuntimeException if the given reference is NULL!
          */
@@ -235,7 +235,7 @@ class InterceptionHelper : public  ::cppu::WeakImplHelper<
                         and delete all special information about it.
 
             @param      xInterceptor
-                        reference to the interceptor, which wish to be deregistered.
+                        reference to the interceptor, which wishes to be deregistered.
 
             @throw      A RuntimeException if the given reference is NULL!
          */
diff --git a/framework/source/services/desktop.cxx b/framework/source/services/desktop.cxx
index 22dbfcd30e35..7e0052bf57a6 100644
--- a/framework/source/services/desktop.cxx
+++ b/framework/source/services/desktop.cxx
@@ -733,7 +733,7 @@ css::uno::Sequence< css::uno::Reference< css::frame::XDispatch > > SAL_CALL Desk
 
     @descr      It's really provided by an internal helper, which is used inside the dispatch API too.
     @param      xInterceptor
-                the interceptor object, which wish to be (de)registered.
+                the interceptor object, which wishes to be (de)registered.
 
     @threadsafe yes
 *//*-*************************************************************************************************************/
diff --git a/include/unotools/cmdoptions.hxx b/include/unotools/cmdoptions.hxx
index b2134a60c5de..6beadc644de9 100644
--- a/include/unotools/cmdoptions.hxx
+++ b/include/unotools/cmdoptions.hxx
@@ -95,7 +95,7 @@ class SAL_WARN_UNUSED UNOTOOLS_DLLPUBLIC SvtCommandOptions : public utl::detail:
                         deregistration mechanism too, we use weak references to
                         the given frames.
 
-            @param      "xFrame"            points to the frame, which wish to be
+            @param      "xFrame"            points to the frame, which wishes to be
                                             notified, if configuration was changed.
         *//*-*****************************************************************************************************/
 
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/DocumentView.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/DocumentView.java
index 0f885f636934..57ac4e77951e 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/DocumentView.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/DocumentView.java
@@ -359,7 +359,7 @@ public class DocumentView extends    JFrame
 
     /**
      * callback from our internal saved frame
-     * which wish to die. It's not necessary to remove listener connections
+     * which wishes to die. It's not necessary to remove listener connections
      * here. Because the broadcaster do it automatically.
      * We have to release all references to him only.
      *
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/OnewayExecutor.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/OnewayExecutor.java
index 8da2103aaa61..4eb7f80a76f8 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/OnewayExecutor.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/OnewayExecutor.java
@@ -70,7 +70,7 @@ class OnewayExecutor extends Thread
 
 
     /**
-     * @member  m_rLink     the object, which wish to be called back by this thread
+     * @member  m_rLink     the object, which wishes to be called back by this thread
      * @member  m_nRequest  describes the type of the original request (means the
      *                      called oneway method)
      * @member  m_lParams   list of parameters of the original request
@@ -84,7 +84,7 @@ class OnewayExecutor extends Thread
     /**
      * ctor
      * It's initialize this thread with all necessary parameters.
-     * It gets the object, which wish to be called back and the type
+     * It gets the object, which wishes to be called back and the type
      * and parameters of the original request.
      *
      * @param nRequest
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/ViewContainer.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/ViewContainer.java
index a2ade7f8a601..d859f203535a 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/ViewContainer.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/ViewContainer.java
@@ -87,7 +87,7 @@ public class ViewContainer extends Thread
      * This register a new view inside this global container
      * (if it doesn't already exist).
      *
-     * @param   aView       view which wish to be registered inside this container
+     * @param   aView       view which wishes to be registered inside this container
      */
     public void addView(Object aView)
     {
@@ -109,7 +109,7 @@ public class ViewContainer extends Thread
      * visible frame anymore.
      *
      * @param aView
-     *          view object which wish to be deregistered
+     *          view object which wishes to be deregistered
      */
     public void removeView(Object aView)
     {


More information about the Libreoffice-commits mailing list