diff options
author | Andres Gomez <agomez@igalia.com> | 2013-11-12 12:29:04 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-11-12 13:10:01 +0000 |
commit | 39f14fc00128e5bac72c474c7466cab9916598f0 (patch) | |
tree | 7a75f59d99b1938011e29f6eb0517ac424f72aa5 /include | |
parent | d8dc136bbf4298c739a9691b41d8c4234183d4cc (diff) |
rtl: starts-/endsWith* new second parameter since 4.2
Updated the documentation for the new optional second parameter in the
O(U)String startsWith* and endsWith* methods so it is explicitly said
that it is only available since LibreOffice 4.2
Change-Id: I58758e4bae85eef07c578dd50d6e0279b49deaf5
Reviewed-on: https://gerrit.libreoffice.org/6649
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Tested-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/rtl/string.hxx | 6 | ||||
-rw-r--r-- | include/rtl/ustring.hxx | 12 |
2 files changed, 12 insertions, 6 deletions
diff --git a/include/rtl/string.hxx b/include/rtl/string.hxx index b0d64d7f64df..04d89cb26c9c 100644 --- a/include/rtl/string.hxx +++ b/include/rtl/string.hxx @@ -682,7 +682,8 @@ public: @param str the substring to be compared @param rest if non-null, and this function returns true, then assign a - copy of the remainder of this string to *rest + copy of the remainder of this string to *rest. Available since + LibreOffice 4.2 @return true if and only if the given str appears as a substring at the start of this string @@ -720,7 +721,8 @@ public: @param str the substring to be compared @param rest if non-null, and this function returns true, then assign a - copy of the remainder of this string to *rest + copy of the remainder of this string to *rest. Available since + LibreOffice 4.2 @return true if and only if the given str appears as a substring at the end of this string diff --git a/include/rtl/ustring.hxx b/include/rtl/ustring.hxx index 0dee880f38d7..826727fc3984 100644 --- a/include/rtl/ustring.hxx +++ b/include/rtl/ustring.hxx @@ -923,7 +923,8 @@ public: @param str the substring to be compared @param rest if non-null, and this function returns true, then assign a - copy of the remainder of this string to *rest + copy of the remainder of this string to *rest. Available since + LibreOffice 4.2 @return true if and only if the given str appears as a substring at the start of this string @@ -968,7 +969,8 @@ public: @param str the substring to be compared @param rest if non-null, and this function returns true, then assign a - copy of the remainder of this string to *rest + copy of the remainder of this string to *rest. Available since + LibreOffice 4.2 @return true if and only if the given str appears as a substring at the start of this string, ignoring the case of ASCII letters ("A"--"Z" and @@ -1013,7 +1015,8 @@ public: @param str the substring to be compared @param rest if non-null, and this function returns true, then assign a - copy of the remainder of this string to *rest + copy of the remainder of this string to *rest. Available since + LibreOffice 4.2 @return true if and only if the given str appears as a substring at the end of this string @@ -1083,7 +1086,8 @@ public: @param str the substring to be compared @param rest if non-null, and this function returns true, then assign a - copy of the remainder of this string to *rest + copy of the remainder of this string to *rest. Available since + LibreOffice 4.2 @return true if and only if the given str appears as a substring at the end of this string, ignoring the case of ASCII letters ("A"--"Z" and |