[Libreoffice-commits] core.git: offapi/com offapi/type_reference oox/source

Andrea Gelmini (via logerrit) logerrit at kemper.freedesktop.org
Mon Aug 12 09:53:48 UTC 2019


 offapi/com/sun/star/xml/crypto/sax/XSAXEventKeeper.idl |    2 +-
 offapi/com/sun/star/xml/dom/events/EventType.idl       |    2 +-
 offapi/com/sun/star/xml/sax/XErrorHandler.idl          |    2 +-
 offapi/com/sun/star/xml/sax/XFastContextHandler.idl    |    6 +++---
 offapi/com/sun/star/xml/sax/XFastTokenHandler.idl      |    4 ++--
 offapi/com/sun/star/xml/wrapper/XXMLElementWrapper.idl |    2 +-
 offapi/type_reference/typelibrary_history.txt          |    2 +-
 oox/source/crypto/AgileEngine.cxx                      |    8 ++++----
 oox/source/drawingml/drawingmltypes.cxx                |    4 ++--
 oox/source/dump/biffdumper.ini                         |    2 +-
 10 files changed, 17 insertions(+), 17 deletions(-)

New commits:
commit 22ad284969afc640006cb493a639130a7cf5d979
Author:     Andrea Gelmini <andrea.gelmini at gelma.net>
AuthorDate: Sun Aug 11 19:39:25 2019 +0200
Commit:     Julien Nabet <serval2412 at yahoo.fr>
CommitDate: Mon Aug 12 11:52:48 2019 +0200

    Fix typos
    
    Change-Id: Ic981076f76c92fb3112932bb7b5d97d6ec3d3c67
    Reviewed-on: https://gerrit.libreoffice.org/77307
    Tested-by: Jenkins
    Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>

diff --git a/offapi/com/sun/star/xml/crypto/sax/XSAXEventKeeper.idl b/offapi/com/sun/star/xml/crypto/sax/XSAXEventKeeper.idl
index 387f3341d49d..ef2def3fee82 100644
--- a/offapi/com/sun/star/xml/crypto/sax/XSAXEventKeeper.idl
+++ b/offapi/com/sun/star/xml/crypto/sax/XSAXEventKeeper.idl
@@ -81,7 +81,7 @@ interface XSAXEventKeeper : com::sun::star::uno::XInterface
     /**
      * Gets the element of an element mark.
      *
-     * @param id   the keeper id of the element mark, it can be a element
+     * @param id   the keeper id of the element mark, it can be an element
      *             collector or a blocker
      */
     com::sun::star::xml::wrapper::XXMLElementWrapper getElement([in] long id);
diff --git a/offapi/com/sun/star/xml/dom/events/EventType.idl b/offapi/com/sun/star/xml/dom/events/EventType.idl
index 37cf0114ce18..ed5eefa39c46 100644
--- a/offapi/com/sun/star/xml/dom/events/EventType.idl
+++ b/offapi/com/sun/star/xml/dom/events/EventType.idl
@@ -34,7 +34,7 @@ enum EventType
 
     DOMFocusOut,
     /*
-    The DOMFocusOut event occurs when a EventTarget loses focus, for instance via a pointing device being moved out of an element or by tabbing navigation out of the element. Unlike the HTML event blur, DOMFocusOut can be applied to any focusable EventTarget, not just FORM controls.
+    The DOMFocusOut event occurs when an EventTarget loses focus, for instance via a pointing device being moved out of an element or by tabbing navigation out of the element. Unlike the HTML event blur, DOMFocusOut can be applied to any focusable EventTarget, not just FORM controls.
     * Bubbles: Yes
     * Cancelable: No
     * Context Info: None
diff --git a/offapi/com/sun/star/xml/sax/XErrorHandler.idl b/offapi/com/sun/star/xml/sax/XErrorHandler.idl
index 2906191af601..568e14c78250 100644
--- a/offapi/com/sun/star/xml/sax/XErrorHandler.idl
+++ b/offapi/com/sun/star/xml/sax/XErrorHandler.idl
@@ -36,7 +36,7 @@ module com {  module sun {  module star {  module xml {  module sax {
     method. The parser will then report all errors and warnings through this
     interface.  </p>
 
-    <p>This interface is a slight adaption of the Java interface
+    <p>This interface is a slight adaptation of the Java interface
     <code>org.xml.sax.ErrorHandler</code>. In IDL, no exception can be passed
     as an argument, so an <code>any</code> serves as the container. The type of the
     exception is SAXParseException or an instance of a derived class.</p>
diff --git a/offapi/com/sun/star/xml/sax/XFastContextHandler.idl b/offapi/com/sun/star/xml/sax/XFastContextHandler.idl
index 8abe44ae3bca..da53a0ce70ae 100644
--- a/offapi/com/sun/star/xml/sax/XFastContextHandler.idl
+++ b/offapi/com/sun/star/xml/sax/XFastContextHandler.idl
@@ -75,14 +75,14 @@ interface XFastContextHandler: com::sun::star::uno::XInterface
             raises( com::sun::star::xml::sax::SAXException );
 
 
-    /** receives notification of the end of an known element.
+    /** receives notification of the end of a known element.
         @see startFastElement
      */
     void endFastElement( [in] long Element )
             raises( com::sun::star::xml::sax::SAXException );
 
 
-    /** receives notification of the end of an known element.
+    /** receives notification of the end of a known element.
         @see startUnknownElement
      */
     void endUnknownElement( [in] string Namespace, [in] string Name )
@@ -109,7 +109,7 @@ interface XFastContextHandler: com::sun::star::uno::XInterface
             raises( com::sun::star::xml::sax::SAXException );
 
 
-    /** receives notification of the beginning of a unknown child element .
+    /** receives notification of the beginning of an unknown child element .
 
         @param Namespace
             contains the namespace url (not the prefix!) of this element.
diff --git a/offapi/com/sun/star/xml/sax/XFastTokenHandler.idl b/offapi/com/sun/star/xml/sax/XFastTokenHandler.idl
index 4daec302ebdf..d6bb02889b77 100644
--- a/offapi/com/sun/star/xml/sax/XFastTokenHandler.idl
+++ b/offapi/com/sun/star/xml/sax/XFastTokenHandler.idl
@@ -38,7 +38,7 @@ module com {  module sun {  module star {  module xml {  module sax {
 interface XFastTokenHandler: com::sun::star::uno::XInterface
 {
 
-    /** returns a integer token for the given string
+    /** returns an integer token for the given string
 
         @param Identifier
             the string given as a byte sequence encoded in UTF-8
@@ -50,7 +50,7 @@ interface XFastTokenHandler: com::sun::star::uno::XInterface
     long getTokenFromUTF8( [in] sequence< byte > Identifier );
 
 
-    /** returns a identifier for the given integer token as a byte
+    /** returns an identifier for the given integer token as a byte
           sequence encoded in UTF-8.
     */
     sequence< byte > getUTF8Identifier( [in] long Token );
diff --git a/offapi/com/sun/star/xml/wrapper/XXMLElementWrapper.idl b/offapi/com/sun/star/xml/wrapper/XXMLElementWrapper.idl
index 658973cb2ae5..abddd84b3fbc 100644
--- a/offapi/com/sun/star/xml/wrapper/XXMLElementWrapper.idl
+++ b/offapi/com/sun/star/xml/wrapper/XXMLElementWrapper.idl
@@ -28,7 +28,7 @@ module com { module sun { module star { module xml { module wrapper {
 /**
  * Interface of XML Element Wrapper.
  * <p>
- * This interface is used to wrap a element information, which
+ * This interface is used to wrap an element information, which
  * make it enable to transfer the element information between
  * different languages, such as C++/Java.
  */
diff --git a/offapi/type_reference/typelibrary_history.txt b/offapi/type_reference/typelibrary_history.txt
index 273b864e3ec3..da6aadd8f4d3 100644
--- a/offapi/type_reference/typelibrary_history.txt
+++ b/offapi/type_reference/typelibrary_history.txt
@@ -79,7 +79,7 @@
   change the compatibility test to use always the type library in the type_reference
   directory. We need only one reference per source stand. I have also removed the
   types_doc.rdb because all type info is already in the normal types.rdb, even
-  the service nad singleton type info.
+  the service and singleton type info.
   In the same step I have updated the reference type library with the rdb of
   OOo2.0.1 and have patched the following singleton types to ensure that we need
   only one type library:
diff --git a/oox/source/crypto/AgileEngine.cxx b/oox/source/crypto/AgileEngine.cxx
index 65482ee4624c..883daeed4ede 100644
--- a/oox/source/crypto/AgileEngine.cxx
+++ b/oox/source/crypto/AgileEngine.cxx
@@ -376,7 +376,7 @@ bool AgileEngine::decryptHmacKey()
 
     std::vector<sal_uInt8> iv = calculateIV(eType, mInfo.keyDataSalt, constBlockHmac1, mInfo.blockSize);
 
-    // Decrypt with out key, calculated iv
+    // Decrypt without key, calculated iv
     Decrypt aDecrypt(mKey, iv, cryptoType(mInfo));
     aDecrypt.update(mInfo.hmacKey, mInfo.hmacEncryptedKey);
 
@@ -401,7 +401,7 @@ bool AgileEngine::decryptHmacValue()
         return false;
     std::vector<sal_uInt8> iv = calculateIV(eType, mInfo.keyDataSalt, constBlockHmac2, mInfo.blockSize);
 
-    // Decrypt with out key, calculated iv
+    // Decrypt without key, calculated iv
     Decrypt aDecrypt(mKey, iv, cryptoType(mInfo));
     aDecrypt.update(mInfo.hmacHash, mInfo.hmacEncryptedValue);
 
@@ -603,7 +603,7 @@ bool AgileEngine::encryptHmacKey()
 
     std::vector<sal_uInt8> iv = calculateIV(eType, mInfo.keyDataSalt, constBlockHmac1, mInfo.blockSize);
 
-    // Encrypt with out key, calculated iv
+    // Encrypt without key, calculated iv
     Encrypt aEncryptor(mKey, iv, cryptoType(mInfo));
     aEncryptor.update(mInfo.hmacEncryptedKey, extendedSalt);
 
@@ -630,7 +630,7 @@ bool AgileEngine::encryptHmacValue()
 
     std::vector<sal_uInt8> iv = calculateIV(eType, mInfo.keyDataSalt, constBlockHmac2, mInfo.blockSize);
 
-    // Encrypt with out key, calculated iv
+    // Encrypt without key, calculated iv
     Encrypt aEncryptor(mKey, iv, cryptoType(mInfo));
     aEncryptor.update(mInfo.hmacEncryptedValue, extendedHash);
 
diff --git a/oox/source/drawingml/drawingmltypes.cxx b/oox/source/drawingml/drawingmltypes.cxx
index 41b659082f77..f341ff3f9587 100644
--- a/oox/source/drawingml/drawingmltypes.cxx
+++ b/oox/source/drawingml/drawingmltypes.cxx
@@ -70,7 +70,7 @@ double GetPositiveFixedPercentage( const OUString& sValue )
     return fPercent;
 }
 
-/** converts the attributes from an CT_TLPoint into an awt Point with 1/1000% */
+/** converts the attributes from a CT_TLPoint into an awt Point with 1/1000% */
 awt::Point GetPointPercent( const Reference< XFastAttributeList >& xAttribs )
 {
     return awt::Point(GetPercent(xAttribs->getOptionalValue(XML_x)), GetPercent(xAttribs->getOptionalValue(XML_y)));
@@ -384,7 +384,7 @@ IntegerRectangle2D GetRelativeRect( const Reference< XFastAttributeList >& xAttr
     return r;
 }
 
-/** converts the attributes from an CT_Size2D into an awt Size with 1/100thmm */
+/** converts the attributes from a CT_Size2D into an awt Size with 1/100thmm */
 awt::Size GetSize2D( const Reference< XFastAttributeList >& xAttribs )
 {
     return awt::Size( GetCoordinate( xAttribs->getOptionalValue( XML_cx ) ), GetCoordinate( xAttribs->getOptionalValue( XML_cy ) ) );
diff --git a/oox/source/dump/biffdumper.ini b/oox/source/dump/biffdumper.ini
index e0d0ce453250..a5ae4c12a86f 100644
--- a/oox/source/dump/biffdumper.ini
+++ b/oox/source/dump/biffdumper.ini
@@ -1133,7 +1133,7 @@ end
 
 # CHSERTRENDLINE -------------------------------------------------------------
 
-shortlist=CHSERTRENDLINE-TYPE,0,poynomial,exponential,logarithmic,power,moving-average
+shortlist=CHSERTRENDLINE-TYPE,0,polynomial,exponential,logarithmic,power,moving-average
 
 # CHSOURCELINK ---------------------------------------------------------------
 


More information about the Libreoffice-commits mailing list