diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2019-08-19 21:44:48 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2019-08-20 09:44:23 +0200 |
commit | 11907c04bf74701293555b568d2c38641177886c (patch) | |
tree | f5165c85a007cc752f49eb6410341f69273b9731 | |
parent | 1a78436290b7dd22df81d6491b656182604d38fd (diff) |
Fix typos
Change-Id: Iae76994e275517d7a1e7b9e29111159f1ec93e2d
Reviewed-on: https://gerrit.libreoffice.org/77766
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Tested-by: Julien Nabet <serval2412@yahoo.fr>
-rw-r--r-- | udkapi/com/sun/star/reflection/XPublished.idl | 2 | ||||
-rw-r--r-- | udkapi/com/sun/star/uri/XVndSunStarExpandUrl.idl | 2 | ||||
-rw-r--r-- | vcl/inc/qt5/Qt5Transferable.hxx | 2 | ||||
-rw-r--r-- | vcl/ios/DataFlavorMapping.hxx | 2 | ||||
-rw-r--r-- | vcl/qt5/Qt5Transferable.cxx | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/udkapi/com/sun/star/reflection/XPublished.idl b/udkapi/com/sun/star/reflection/XPublished.idl index b7d8f13c39a0..880438f6cd63 100644 --- a/udkapi/com/sun/star/reflection/XPublished.idl +++ b/udkapi/com/sun/star/reflection/XPublished.idl @@ -88,7 +88,7 @@ module com { module sun { module star { module reflection { */ interface XPublished { /** - Returns the “published” status of an UNOIDL entity. + Returns the “published” status of a UNOIDL entity. @return `TRUE` if the UNOIDL entity represented by this object is published diff --git a/udkapi/com/sun/star/uri/XVndSunStarExpandUrl.idl b/udkapi/com/sun/star/uri/XVndSunStarExpandUrl.idl index 75f19bd017f9..0bcfe32a5458 100644 --- a/udkapi/com/sun/star/uri/XVndSunStarExpandUrl.idl +++ b/udkapi/com/sun/star/uri/XVndSunStarExpandUrl.idl @@ -35,7 +35,7 @@ module com { module sun { module star { module uri { <p>These URLs are of the form<br/> <var>vnd-sun-star-expand-url</var> = <code>"VND.SUN.STAR.EXPAND:"</code> <var>opaque_part</var><br/> - where the <var>opaque_part</var> is an UTF-8 string as described in + where the <var>opaque_part</var> is a UTF-8 string as described in <a href="http://udk.openoffice.org/common/man/concept/micro_deployment.html"> Bootstrap Arguments and Micro Deployment</a>. See <a href="http://www.ietf.org/rfc/rfc2396.txt">RFC 2396</a>, diff --git a/vcl/inc/qt5/Qt5Transferable.hxx b/vcl/inc/qt5/Qt5Transferable.hxx index f36216eed121..df06661bb9fd 100644 --- a/vcl/inc/qt5/Qt5Transferable.hxx +++ b/vcl/inc/qt5/Qt5Transferable.hxx @@ -94,7 +94,7 @@ typedef Qt5Transferable Qt5DnDTransferable; * container for mime data. There is no need to ever set any of its data. * * LO will offer at least UTF-16, if there is a viable text representation. - * If LO misses to offer an UTF-8 or a locale encoded string, these objects + * If LO misses to offer a UTF-8 or a locale encoded string, these objects * will offer them themselves and convert from UTF-16 on demand. * * It's the "mirror" interface of the Qt5Transferable. diff --git a/vcl/ios/DataFlavorMapping.hxx b/vcl/ios/DataFlavorMapping.hxx index 936d7fc2f48b..7e527dc09c34 100644 --- a/vcl/ios/DataFlavorMapping.hxx +++ b/vcl/ios/DataFlavorMapping.hxx @@ -64,7 +64,7 @@ public: /* Map a system data flavor to an OpenOffice data flavor. Return an empty string if there is not suitable - mapping from a system data flavor to a OpenOffice data + mapping from a system data flavor to an OpenOffice data flavor. */ css::datatransfer::DataFlavor systemToOpenOfficeFlavor(const NSString* systemDataFlavor) const; diff --git a/vcl/qt5/Qt5Transferable.cxx b/vcl/qt5/Qt5Transferable.cxx index e3c5bfa42a1a..81a47871f411 100644 --- a/vcl/qt5/Qt5Transferable.cxx +++ b/vcl/qt5/Qt5Transferable.cxx @@ -260,7 +260,7 @@ QStringList Qt5MimeData::formats() const lcl_textMimeInfo(rFlavor.MimeType, m_bHaveNoCharset, bHaveUTF16, m_bHaveUTF8); } - // we provide a locale encoded and an UTF-8 variant, if missing + // we provide a locale encoded and a UTF-8 variant, if missing if (m_bHaveNoCharset || bHaveUTF16 || m_bHaveUTF8) { // if there is a text representation from LO point of view, it'll be UTF-16 |