compilerplugins/clang/referencecasting.cxx                     |    2 +-
 offapi/com/sun/star/accessibility/AccessibleEventId.idl        |    6 +++---
 offapi/com/sun/star/accessibility/AccessibleRole.idl           |    4 ++--
 offapi/com/sun/star/accessibility/AccessibleStateType.idl      |    2 +-
 offapi/com/sun/star/accessibility/XAccessibleEventListener.idl |    2 +-
 offapi/com/sun/star/accessibility/XAccessibleText.idl          |    2 +-
 offapi/com/sun/star/awt/AccessibleTreeListBoxEntry.idl         |    2 +-
 offapi/com/sun/star/awt/ImagePosition.idl                      |    2 +-
 offapi/com/sun/star/awt/UnoControlEditModel.idl                |    2 +-
 offapi/com/sun/star/awt/XDisplayConnection.idl                 |    4 ++--
 offapi/com/sun/star/awt/tree/TreeControlModel.idl              |    2 +-
 offapi/com/sun/star/chart2/DataPointProperties.idl             |    2 +-
 offapi/com/sun/star/chart2/FillBitmap.idl                      |    2 +-
 offapi/com/sun/star/chart2/XCoordinateSystemContainer.idl      |    2 +-
 offapi/com/sun/star/chart2/data/XDatabaseDataProvider.idl      |    4 ++--
 offapi/com/sun/star/configuration/AccessRootElement.idl        |    2 +-
 offapi/com/sun/star/configuration/AdministrationProvider.idl   |    2 +-
 offapi/com/sun/star/configuration/ConfigurationRegistry.idl    |    4 ++--
 18 files changed, 24 insertions(+), 24 deletions(-)

New commits:
commit d29bd2ac60bcb6ad15d9746303e0d54747eca4b1
Author:     Andrea Gelmini <andrea.gelm...@gelma.net>
AuthorDate: Tue Jul 23 19:51:26 2019 +0200
Commit:     Andrea Gelmini <andrea.gelm...@gelma.net>
CommitDate: Tue Jul 23 22:20:26 2019 +0200

    Fix typos
    
    It passed "make check"
    
    Change-Id: I055017a7616ed4d9725c66a387c040b55e22751f
    Reviewed-on: https://gerrit.libreoffice.org/76202
    Tested-by: Jenkins
    Reviewed-by: Andrea Gelmini <andrea.gelm...@gelma.net>

diff --git a/compilerplugins/clang/referencecasting.cxx 
b/compilerplugins/clang/referencecasting.cxx
index e60177f4effb..ef11b0b5b942 100644
--- a/compilerplugins/clang/referencecasting.cxx
+++ b/compilerplugins/clang/referencecasting.cxx
@@ -375,7 +375,7 @@ static int derivedFromCount(QualType qt, const 
CXXRecordDecl* baseRecord)
 */
 static bool isDerivedFrom(const CXXRecordDecl* subtypeRecord, const 
CXXRecordDecl* baseRecord)
 {
-    // if there is more than one case, then we have an ambigous conversion, 
and we can't change the code
+    // if there is more than one case, then we have an ambiguous conversion, 
and we can't change the code
     // to use the upcasting constructor.
     return derivedFromCount(subtypeRecord, baseRecord) == 1;
 }
diff --git a/offapi/com/sun/star/accessibility/AccessibleEventId.idl 
b/offapi/com/sun/star/accessibility/AccessibleEventId.idl
index 99739211663b..c7f5b488bde2 100644
--- a/offapi/com/sun/star/accessibility/AccessibleEventId.idl
+++ b/offapi/com/sun/star/accessibility/AccessibleEventId.idl
@@ -86,7 +86,7 @@ constants AccessibleEventId
     /** This event indicates a change of the bounding rectangle of an
         accessible object with respect only to its size or relative
         position.  If the absolute position changes but not the relative
-        position then its is not necessary to send an event.
+        position then it is not necessary to send an event.
 
         <p>Use this event rather than the
         VISIBLE_DATA_EVENT when really only the
@@ -117,7 +117,7 @@ constants AccessibleEventId
         reference to this object and
         AccessibleEventObject::NewValue remains empty.</p>
 
-        <p>If a child has been added and a another one has been removed
+        <p>If a child has been added and another one has been removed
         don't set both fields at the same.  Send separate events
         instead.</p>
 
@@ -385,7 +385,7 @@ constants AccessibleEventId
     */
     const short ACTIVE_DESCENDANT_CHANGED_NOFOCUS = 34;
 
-    /** An item in a container has been added to a already present selection
+    /** An item in a container has been added to an already present selection
 
         Example: a second list item has been selected in a listbox.
 
diff --git a/offapi/com/sun/star/accessibility/AccessibleRole.idl 
b/offapi/com/sun/star/accessibility/AccessibleRole.idl
index a21ce06f6e6d..9cf23aecde51 100644
--- a/offapi/com/sun/star/accessibility/AccessibleRole.idl
+++ b/offapi/com/sun/star/accessibility/AccessibleRole.idl
@@ -705,7 +705,7 @@ constants AccessibleRole
     */
     const short COMMENT_END = 82;
 
-    /** View of an presentation document.
+    /** View of a presentation document.
 
         <p>It's an specific variation of DOCUMENT for presentations.</p>
 
@@ -721,7 +721,7 @@ constants AccessibleRole
     */
     const short DOCUMENT_SPREADSHEET = 84;
 
-    /** View of an text document.
+    /** View of a text document.
 
         <p>It's an specific variation of DOCUMENT for text.</p>
 
diff --git a/offapi/com/sun/star/accessibility/AccessibleStateType.idl 
b/offapi/com/sun/star/accessibility/AccessibleStateType.idl
index c8c6e9f79ea2..7f64a6380cbb 100644
--- a/offapi/com/sun/star/accessibility/AccessibleStateType.idl
+++ b/offapi/com/sun/star/accessibility/AccessibleStateType.idl
@@ -118,7 +118,7 @@ constants AccessibleStateType
         The state is added to make a performance improvement. Now it is no
         longer necessary to iterate over all children to find out whether
         they are transient or not to decide whether to add listener or not.
-        If there is a object with this state no one should iterate over the
+        If there is an object with this state no one should iterate over the
         children to add listener. Only the active descendant should get
         listener if it is not transient.
     */
diff --git a/offapi/com/sun/star/accessibility/XAccessibleEventListener.idl 
b/offapi/com/sun/star/accessibility/XAccessibleEventListener.idl
index 10cef20d50a7..e1645c4e959e 100644
--- a/offapi/com/sun/star/accessibility/XAccessibleEventListener.idl
+++ b/offapi/com/sun/star/accessibility/XAccessibleEventListener.idl
@@ -35,7 +35,7 @@ module com { module sun { module star { module accessibility {
 interface XAccessibleEventListener: ::com::sun::star::lang::XEventListener
 {
 
-    /** is called whenever a accessible event (see AccessibleEventObject) 
occurs.
+    /** is called whenever an accessible event (see AccessibleEventObject) 
occurs.
      */
     void notifyEvent( [in] AccessibleEventObject aEvent );
 };
diff --git a/offapi/com/sun/star/accessibility/XAccessibleText.idl 
b/offapi/com/sun/star/accessibility/XAccessibleText.idl
index f5a3efc9de4d..7e90f2d8a463 100644
--- a/offapi/com/sun/star/accessibility/XAccessibleText.idl
+++ b/offapi/com/sun/star/accessibility/XAccessibleText.idl
@@ -193,7 +193,7 @@ interface XAccessibleText : 
::com::sun::star::uno::XInterface
         or not is implementation dependent.  It typically is when text is
         editable or otherwise when on the screen the caret can be placed
         behind the text.  You can be sure that the index is valid after you
-        have received a AccessibleEventId::CARET event
+        have received an AccessibleEventId::CARET event
         for this index.</p>
         @param nIndex
             Index of the character for which to return its bounding box.
diff --git a/offapi/com/sun/star/awt/AccessibleTreeListBoxEntry.idl 
b/offapi/com/sun/star/awt/AccessibleTreeListBoxEntry.idl
index 7984cb97da8e..c9e67ef78a87 100644
--- a/offapi/com/sun/star/awt/AccessibleTreeListBoxEntry.idl
+++ b/offapi/com/sun/star/awt/AccessibleTreeListBoxEntry.idl
@@ -57,7 +57,7 @@ service AccessibleTreeListBoxEntry
        <li>Children: There can exist children of type 
com::sun::star::awt::AccessibleTreeListBoxEntry.
         </li>
        <li>Parent: The parent is either the 
com::sun::star::awt::AccessibleTreeListBox
-            or an com::sun::star::awt::AccessibleTreeListBoxEntry that 
contains the tree list box entry.</li>
+            or a com::sun::star::awt::AccessibleTreeListBoxEntry that contains 
the tree list box entry.</li>
        <li>Relations: There are no relations.</li>
        <li>States: The states supported by this service are
            <ul>
diff --git a/offapi/com/sun/star/awt/ImagePosition.idl 
b/offapi/com/sun/star/awt/ImagePosition.idl
index 4fa7aafa66f0..84cda7027b67 100644
--- a/offapi/com/sun/star/awt/ImagePosition.idl
+++ b/offapi/com/sun/star/awt/ImagePosition.idl
@@ -24,7 +24,7 @@
 module com {  module sun {  module star {  module awt {
 
 
-/** specifies the position of a image, relative to another object
+/** specifies the position of an image, relative to another object
 
     @see ImageAlign
 */
diff --git a/offapi/com/sun/star/awt/UnoControlEditModel.idl 
b/offapi/com/sun/star/awt/UnoControlEditModel.idl
index 7a0f877222ea..2d173e599832 100644
--- a/offapi/com/sun/star/awt/UnoControlEditModel.idl
+++ b/offapi/com/sun/star/awt/UnoControlEditModel.idl
@@ -56,7 +56,7 @@ published service UnoControlEditModel
     [optional, property] boolean AutoHScroll;
 
 
-    /** If set to true an vertical scrollbar will be added automatically
+    /** If set to true a vertical scrollbar will be added automatically
         when needed.
 
         @since OOo 2.3
diff --git a/offapi/com/sun/star/awt/XDisplayConnection.idl 
b/offapi/com/sun/star/awt/XDisplayConnection.idl
index 0bb18ef66f47..f9960f629e25 100644
--- a/offapi/com/sun/star/awt/XDisplayConnection.idl
+++ b/offapi/com/sun/star/awt/XDisplayConnection.idl
@@ -49,7 +49,7 @@ published interface XDisplayConnection: 
com::sun::star::uno::XInterface
     void addEventHandler( [in] any window, [in] XEventHandler eventHandler, 
[in] long eventMask );
 
 
-    /** removes a eventHandler from the handler list.
+    /** removes an eventHandler from the handler list.
 
         @param window
         the platform specific window id the handler should be unregistered for.
@@ -77,7 +77,7 @@ published interface XDisplayConnection: 
com::sun::star::uno::XInterface
     void removeErrorHandler( [in] XEventHandler errorHandler );
 
 
-    /** returns a identifier.
+    /** returns an identifier.
 
         @returns a unique platform dependent identifier for a display 
connection.
     */
diff --git a/offapi/com/sun/star/awt/tree/TreeControlModel.idl 
b/offapi/com/sun/star/awt/tree/TreeControlModel.idl
index c8fad9d26264..018df931ffd0 100644
--- a/offapi/com/sun/star/awt/tree/TreeControlModel.idl
+++ b/offapi/com/sun/star/awt/tree/TreeControlModel.idl
@@ -31,7 +31,7 @@ module com {  module sun {  module star {  module awt { 
module tree {
  */
 service TreeControlModel
 {
-    /** specifies the standard model of an com::sun::star::awt::UnoControl. */
+    /** specifies the standard model of a com::sun::star::awt::UnoControl. */
     service ::com::sun::star::awt::UnoControlModel;
 
     /** Specifies the selection mode that is enabled for this tree.
diff --git a/offapi/com/sun/star/chart2/DataPointProperties.idl 
b/offapi/com/sun/star/chart2/DataPointProperties.idl
index df5cf071ee90..e2230a5f7630 100644
--- a/offapi/com/sun/star/chart2/DataPointProperties.idl
+++ b/offapi/com/sun/star/chart2/DataPointProperties.idl
@@ -233,7 +233,7 @@ service DataPointProperties
     */
     [property] long FillBitmapSizeY;
 
-    /** this enum selects how a area is filled with a single bitmap.
+    /** this enum selects how an area is filled with a single bitmap.
     */
     [property] com::sun::star::drawing::BitmapMode FillBitmapMode;
 
diff --git a/offapi/com/sun/star/chart2/FillBitmap.idl 
b/offapi/com/sun/star/chart2/FillBitmap.idl
index 29da2b57be53..7f0aabbb8ba8 100644
--- a/offapi/com/sun/star/chart2/FillBitmap.idl
+++ b/offapi/com/sun/star/chart2/FillBitmap.idl
@@ -81,7 +81,7 @@ struct FillBitmap
     */
     com::sun::star::awt::Size aSize;
 
-    /** this enum selects how a area is filled with a single bitmap.
+    /** this enum selects how an area is filled with a single bitmap.
 
         <p>It may be repeated, stretched or displayed with blank space
         around it.</p>
diff --git a/offapi/com/sun/star/chart2/XCoordinateSystemContainer.idl 
b/offapi/com/sun/star/chart2/XCoordinateSystemContainer.idl
index 46d39261bf36..94bdb19feed0 100644
--- a/offapi/com/sun/star/chart2/XCoordinateSystemContainer.idl
+++ b/offapi/com/sun/star/chart2/XCoordinateSystemContainer.idl
@@ -35,7 +35,7 @@ module chart2
 
 interface XCoordinateSystemContainer : com::sun::star::uno::XInterface
 {
-    /** add an coordinate system to the coordinate system container
+    /** add a coordinate system to the coordinate system container
 
         @throws IllegalArgumentException
             If the given coordinate system is already contained in the 
container.
diff --git a/offapi/com/sun/star/chart2/data/XDatabaseDataProvider.idl 
b/offapi/com/sun/star/chart2/data/XDatabaseDataProvider.idl
index 64fa52d2757d..c8c0bcafb1cf 100644
--- a/offapi/com/sun/star/chart2/data/XDatabaseDataProvider.idl
+++ b/offapi/com/sun/star/chart2/data/XDatabaseDataProvider.idl
@@ -68,7 +68,7 @@ interface XDatabaseDataProvider
 
     /** is used for subreports and contains the names of columns of the parent 
report.
     <p> These columns are typically the foreign key fields of the parent 
report.
-    The values of theses columns are used to identify the data for the 
subreport.
+    The values of these columns are used to identify the data for the 
subreport.
     Each time the parent report changes its current row, the subreport 
requeries
     it's data based on the values of the master fields.</p>
     <p>If the report is no sub report (e.g. its parent is not a report 
itself), this
@@ -165,7 +165,7 @@ interface XDatabaseDataProvider
         set raises (com::sun::star::beans::UnknownPropertyException);
     };
 
-    /** is a additional sort order definition for a row set.
+    /** is an additional sort order definition for a row set.
      */
     [attribute,bound] string Order;
 
diff --git a/offapi/com/sun/star/configuration/AccessRootElement.idl 
b/offapi/com/sun/star/configuration/AccessRootElement.idl
index fd86ae44df4c..0c390034232f 100644
--- a/offapi/com/sun/star/configuration/AccessRootElement.idl
+++ b/offapi/com/sun/star/configuration/AccessRootElement.idl
@@ -92,7 +92,7 @@ published service AccessRootElement
  this fragment is removed from the complete hierarchy by an outside source.
  </p>
 
- <p>Clients may register an com::sun::star::lang::XEventListener
+ <p>Clients may register a com::sun::star::lang::XEventListener
  to be notified when the object is disposed for either cause.
  </p>
 */
diff --git a/offapi/com/sun/star/configuration/AdministrationProvider.idl 
b/offapi/com/sun/star/configuration/AdministrationProvider.idl
index 3e8f8546b78f..74944d30c86e 100644
--- a/offapi/com/sun/star/configuration/AdministrationProvider.idl
+++ b/offapi/com/sun/star/configuration/AdministrationProvider.idl
@@ -58,7 +58,7 @@ module com { module sun { module star { module configuration {
     <p>A  ConfigurationProvider provides access to the personal
     layer of configuration data of the current user context. It should in
     most cases be used when <em>using</em> the configuration data, although
-    for most contexts a AdministrationProvider can be used as
+    for most contexts an AdministrationProvider can be used as
     a drop-in replacement.
     </p>
  */
diff --git a/offapi/com/sun/star/configuration/ConfigurationRegistry.idl 
b/offapi/com/sun/star/configuration/ConfigurationRegistry.idl
index 9bf5b8e3c9a9..2773a178287f 100644
--- a/offapi/com/sun/star/configuration/ConfigurationRegistry.idl
+++ b/offapi/com/sun/star/configuration/ConfigurationRegistry.idl
@@ -49,7 +49,7 @@ module com { module sun { module star { module configuration {
     for some nodes.
     </p><p>
     Thus anybody using this service is strongly advised to read and understand 
the specification
-    of an configuration provider 
(com.sun.star.configuration::ConfigurationProvider)
+    of a configuration provider 
(com.sun.star.configuration::ConfigurationProvider)
     and all of its aspects.
     </p>
 
@@ -71,7 +71,7 @@ published service ConfigurationRegistry
     /** is used to commit changes to the configuration.
         <p>As specified for the
         com::sun::star::configuration::ConfigurationUpdateAccess
-        service, all changes made to an configuration subtree have to be 
committed
+        service, all changes made to a configuration subtree have to be 
committed
         before they become persistent.
         To do this for a configuration accessed as a registry, call
         com::sun::star::util::XFlushable::flush().
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to