summaryrefslogtreecommitdiff
path: root/sal
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2012-11-20 21:27:47 +0100
committerMichael Stahl <mstahl@redhat.com>2012-11-20 21:44:16 +0100
commit079485a6486b76090e64e899e44e8598cd2159e7 (patch)
treed8099f930203506f4cc453f97626a0d3a16b7fc3 /sal
parentec8dcf58e95bda4c394fc15b5eae72c408f19aca (diff)
sal, cppuhelper, udkapi, offapi: s/@since 3.7/@since 4.0/
Change-Id: Iefbe31af8d6ec421c6006423b6ee3a6375e3d453
Diffstat (limited to 'sal')
-rw-r--r--sal/inc/osl/interlck.h4
-rw-r--r--sal/inc/rtl/string.h2
-rw-r--r--sal/inc/rtl/string.hxx6
-rw-r--r--sal/inc/rtl/ustring.h4
-rw-r--r--sal/inc/rtl/ustring.hxx10
-rw-r--r--sal/inc/sal/types.h2
6 files changed, 14 insertions, 14 deletions
diff --git a/sal/inc/osl/interlck.h b/sal/inc/osl/interlck.h
index 792ea55051d9..537df6ec36d7 100644
--- a/sal/inc/osl/interlck.h
+++ b/sal/inc/osl/interlck.h
@@ -63,7 +63,7 @@ SAL_DLLPUBLIC oslInterlockedCount SAL_CALL osl_decrementInterlockedCount(oslInte
@param p Address of count variable
@return The adjusted value of the count variable.
- @since LibreOffice 3.7
+ @since LibreOffice 4.0
*/
#if defined( HAVE_GCC_BUILTIN_ATOMIC )
# define osl_atomic_increment(p) __sync_add_and_fetch((p), 1)
@@ -80,7 +80,7 @@ SAL_DLLPUBLIC oslInterlockedCount SAL_CALL osl_decrementInterlockedCount(oslInte
@param p Address of count variable
@return The adjusted value of the count variable.
- @since LibreOffice 3.7
+ @since LibreOffice 4.0
*/
#if defined( HAVE_GCC_BUILTIN_ATOMIC )
# define osl_atomic_decrement(p) __sync_sub_and_fetch((p), 1)
diff --git a/sal/inc/rtl/string.h b/sal/inc/rtl/string.h
index 6dd42363b98a..fad5511091e6 100644
--- a/sal/inc/rtl/string.h
+++ b/sal/inc/rtl/string.h
@@ -900,7 +900,7 @@ SAL_DLLPUBLIC void SAL_CALL rtl_string_newFromStr_WithLength( rtl_String ** newS
@param count the number of characters.
@return the specified substring.
- @since LibreOffice 3.7
+ @since LibreOffice 4.0
*/
SAL_DLLPUBLIC void SAL_CALL rtl_string_newFromSubString(
rtl_String ** newStr, const rtl_String * from,
diff --git a/sal/inc/rtl/string.hxx b/sal/inc/rtl/string.hxx
index c7dd48e6f119..8788710cb49c 100644
--- a/sal/inc/rtl/string.hxx
+++ b/sal/inc/rtl/string.hxx
@@ -670,7 +670,7 @@ public:
@return true if and only if the given str appears as a substring at the
start of this string
- @since LibreOffice 3.7
+ @since LibreOffice 4.0
*/
bool startsWith(OString const & str) const {
return match(str, 0);
@@ -679,7 +679,7 @@ public:
/**
@overload
This function accepts an ASCII string literal as its argument.
- @since LibreOffice 3.7
+ @since LibreOffice 4.0
*/
template< typename T >
typename internal::ConstCharArrayDetector< T, bool >::Type startsWith( T& literal ) const
@@ -1483,7 +1483,7 @@ struct OStringHash
Support for rtl::OString in std::ostream (and thus in
CPPUNIT_ASSERT or SAL_INFO macros, for example).
- @since LibreOffice 3.7
+ @since LibreOffice 4.0
*/
template< typename charT, typename traits > std::basic_ostream<charT, traits> &
operator <<(
diff --git a/sal/inc/rtl/ustring.h b/sal/inc/rtl/ustring.h
index e056bad4915e..02dbad6da627 100644
--- a/sal/inc/rtl/ustring.h
+++ b/sal/inc/rtl/ustring.h
@@ -1237,7 +1237,7 @@ SAL_DLLPUBLIC void SAL_CALL rtl_uString_newFromStr_WithLength(
@param count the number of characters.
@return the specified substring.
- @since LibreOffice 3.7
+ @since LibreOffice 4.0
*/
SAL_DLLPUBLIC void SAL_CALL rtl_uString_newFromSubString(
rtl_uString ** newStr, const rtl_uString * from,
@@ -1536,7 +1536,7 @@ SAL_DLLPUBLIC void SAL_CALL rtl_uString_newReplaceAll(
@param fromIndex the position in the string where we will begin searching
- @since LibreOffice 3.7
+ @since LibreOffice 4.0
*/
SAL_DLLPUBLIC void SAL_CALL rtl_uString_newReplaceAllFromIndex(
rtl_uString ** newStr, rtl_uString * str, rtl_uString const * from,
diff --git a/sal/inc/rtl/ustring.hxx b/sal/inc/rtl/ustring.hxx
index 39ddb49f13cb..12f6d07994ef 100644
--- a/sal/inc/rtl/ustring.hxx
+++ b/sal/inc/rtl/ustring.hxx
@@ -889,7 +889,7 @@ public:
@return true if and only if the given str appears as a substring at the
start of this string
- @since LibreOffice 3.7
+ @since LibreOffice 4.0
*/
bool startsWith(OUString const & str) const {
return match(str, 0);
@@ -898,7 +898,7 @@ public:
/**
@overload
This function accepts an ASCII string literal as its argument.
- @since LibreOffice 3.7
+ @since LibreOffice 4.0
*/
template< typename T >
typename internal::ConstCharArrayDetector< T, bool >::Type startsWith( T& literal ) const
@@ -919,7 +919,7 @@ public:
@param str the object (substring) to be compared.
@return true if this string starts with str, ignoring the case of ASCII
letters ("A"--"Z" and "a"--"z"); otherwise, false is returned
- @since LibreOffice 3.7
+ @since LibreOffice 4.0
*/
sal_Bool startsWithIgnoreAsciiCase( const OUString & str ) const SAL_THROW(())
{
@@ -929,7 +929,7 @@ public:
/**
@overload
This function accepts an ASCII string literal as its argument.
- @since LibreOffice 3.7
+ @since LibreOffice 4.0
*/
template< typename T >
typename internal::ConstCharArrayDetector< T, bool >::Type startsWithIgnoreAsciiCase( T& literal ) const SAL_THROW(())
@@ -1533,7 +1533,7 @@ public:
@param fromIndex the position in the string where we will begin searching
- @since LibreOffice 3.7
+ @since LibreOffice 4.0
*/
OUString replaceAll(OUString const & from, OUString const & to, int fromIndex = 0) const {
rtl_uString * s = 0;
diff --git a/sal/inc/sal/types.h b/sal/inc/sal/types.h
index 7e215bce09e7..3eca2945300a 100644
--- a/sal/inc/sal/types.h
+++ b/sal/inc/sal/types.h
@@ -512,7 +512,7 @@ template< typename T1, typename T2 > inline T1 static_int_cast(T2 n) {
Currently implemented by a Clang compiler plugin.
- @since LibreOffice 3.7
+ @since LibreOffice 4.0
*/