From 22ad284969afc640006cb493a639130a7cf5d979 Mon Sep 17 00:00:00 2001 From: Andrea Gelmini Date: Sun, 11 Aug 2019 19:39:25 +0200 Subject: Fix typos Change-Id: Ic981076f76c92fb3112932bb7b5d97d6ec3d3c67 Reviewed-on: https://gerrit.libreoffice.org/77307 Tested-by: Jenkins Reviewed-by: Julien Nabet --- 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 +- 7 files changed, 10 insertions(+), 10 deletions(-) (limited to 'offapi') 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.

-

This interface is a slight adaption of the Java interface +

This interface is a slight adaptation of the Java interface org.xml.sax.ErrorHandler. In IDL, no exception can be passed as an argument, so an any serves as the container. The type of the exception is SAXParseException or an instance of a derived class.

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. *

- * 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: -- cgit