Kaydet (Commit) 8e6c335c authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Update @since tags LO 4.5 -> 5.0

Change-Id: Idb2e46fcaa080d6763d2e3ed963f7673a2353eb2
üst 81090304
...@@ -267,7 +267,7 @@ template<> Any SAL_CALL makeAny(Any const &) SAL_DELETED_FUNCTION; ...@@ -267,7 +267,7 @@ template<> Any SAL_CALL makeAny(Any const &) SAL_DELETED_FUNCTION;
The difference to makeAny is that makeAny cannot be called on an Any, while The difference to makeAny is that makeAny cannot be called on an Any, while
toAny just returns the given Any. toAny just returns the given Any.
@since LibreOffice 4.5 @since LibreOffice 5.0
*/ */
template<typename T> inline Any toAny(T const & value); template<typename T> inline Any toAny(T const & value);
......
...@@ -118,7 +118,7 @@ public: ...@@ -118,7 +118,7 @@ public:
@param init an initializer_list @param init an initializer_list
@since LibreOffice 4.5 @since LibreOffice 5.0
*/ */
inline Sequence(std::initializer_list<E> init); inline Sequence(std::initializer_list<E> init);
#endif #endif
......
...@@ -90,7 +90,7 @@ SAL_DLLPUBLIC void * SAL_CALL rtl_allocateZeroMemory ( ...@@ -90,7 +90,7 @@ SAL_DLLPUBLIC void * SAL_CALL rtl_allocateZeroMemory (
@param Ptr [in] pointer to previously allocated memory. @param Ptr [in] pointer to previously allocated memory.
@param Bytes [in] memory size. @param Bytes [in] memory size.
@since LibreOffice 4.5 @since LibreOffice 5.0
*/ */
SAL_DLLPUBLIC void SAL_CALL rtl_secureZeroMemory ( SAL_DLLPUBLIC void SAL_CALL rtl_secureZeroMemory (
void * Ptr, void * Ptr,
......
...@@ -154,7 +154,7 @@ inline bool isAsciiHexDigit(sal_uInt32 code) ...@@ -154,7 +154,7 @@ inline bool isAsciiHexDigit(sal_uInt32 code)
@return True if code is an ASCII octal digit character (ASCII '0'--'7'). @return True if code is an ASCII octal digit character (ASCII '0'--'7').
@since LibreOffice 4.5 @since LibreOffice 5.0
*/ */
inline bool isAsciiOctalDigit(sal_uInt32 code) inline bool isAsciiOctalDigit(sal_uInt32 code)
{ {
......
...@@ -54,22 +54,22 @@ enum rtl_math_StringFormat ...@@ -54,22 +54,22 @@ enum rtl_math_StringFormat
rtl_math_StringFormat_Automatic, rtl_math_StringFormat_Automatic,
/** Same 'E', but with only 1 minimum digits in exponent. /** Same 'E', but with only 1 minimum digits in exponent.
@since LibreOffice 4.5 @since LibreOffice 5.0
*/ */
rtl_math_StringFormat_E1, rtl_math_StringFormat_E1,
/** Same 'E', but with only 2 minimum digits in exponent. /** Same 'E', but with only 2 minimum digits in exponent.
@since LibreOffice 4.5 @since LibreOffice 5.0
*/ */
rtl_math_StringFormat_E2, rtl_math_StringFormat_E2,
/** Same 'G', but with only 1 minimum digits in exponent. /** Same 'G', but with only 1 minimum digits in exponent.
@since LibreOffice 4.5 @since LibreOffice 5.0
*/ */
rtl_math_StringFormat_G1, rtl_math_StringFormat_G1,
/** Same 'G', but with only 2 minimum digits in exponent. /** Same 'G', but with only 2 minimum digits in exponent.
@since LibreOffice 4.5 @since LibreOffice 5.0
*/ */
rtl_math_StringFormat_G2, rtl_math_StringFormat_G2,
......
...@@ -76,7 +76,7 @@ struct SAL_WARN_UNUSED OUStringLiteral ...@@ -76,7 +76,7 @@ struct SAL_WARN_UNUSED OUStringLiteral
/** A simple wrapper around an ASCII character literal, for use in certain /** A simple wrapper around an ASCII character literal, for use in certain
OUString functions designed for efficient processing of string literals. OUString functions designed for efficient processing of string literals.
@since LibreOffice 4.5 @since LibreOffice 5.0
*/ */
template<char C> struct SAL_WARN_UNUSED OUStringLiteral1 { template<char C> struct SAL_WARN_UNUSED OUStringLiteral1 {
static_assert( static_assert(
...@@ -266,7 +266,7 @@ public: ...@@ -266,7 +266,7 @@ public:
OUString(flag ? OUStringLiteral("a") : OUStringLiteral("bb")) OUString(flag ? OUStringLiteral("a") : OUStringLiteral("bb"))
@since LibreOffice 4.5 @since LibreOffice 5.0
*/ */
OUString(OUStringLiteral literal): pData(0) { OUString(OUStringLiteral literal): pData(0) {
rtl_uString_newFromLiteral(&pData, literal.data, literal.size, 0); rtl_uString_newFromLiteral(&pData, literal.data, literal.size, 0);
...@@ -405,7 +405,7 @@ public: ...@@ -405,7 +405,7 @@ public:
/// @cond INTERNAL /// @cond INTERNAL
/** Assign a new string from a single ASCII character literal. /** Assign a new string from a single ASCII character literal.
@since LibreOffice 4.5 @since LibreOffice 5.0
*/ */
template<char C> OUString & operator =(OUStringLiteral1<C>) { template<char C> OUString & operator =(OUStringLiteral1<C>) {
sal_Unicode const c = C; sal_Unicode const c = C;
...@@ -1310,7 +1310,7 @@ public: ...@@ -1310,7 +1310,7 @@ public:
/* Comparison between OUString and OUStringLiteral. /* Comparison between OUString and OUStringLiteral.
@since LibreOffice 4.5 @since LibreOffice 5.0
*/ */
friend bool operator ==(OUString const & lhs, OUStringLiteral const & rhs) { friend bool operator ==(OUString const & lhs, OUStringLiteral const & rhs) {
...@@ -2502,7 +2502,7 @@ public: ...@@ -2502,7 +2502,7 @@ public:
/** Compare a string and an ASCII character literal for equality. /** Compare a string and an ASCII character literal for equality.
@since LibreOffice 4.5 @since LibreOffice 5.0
*/ */
template<char C> bool operator ==(OUString const & string, OUStringLiteral1<C>) template<char C> bool operator ==(OUString const & string, OUStringLiteral1<C>)
{ {
...@@ -2512,7 +2512,7 @@ template<char C> bool operator ==(OUString const & string, OUStringLiteral1<C>) ...@@ -2512,7 +2512,7 @@ template<char C> bool operator ==(OUString const & string, OUStringLiteral1<C>)
/** Compare a string and an ASCII character literal for inequality. /** Compare a string and an ASCII character literal for inequality.
@since LibreOffice 4.5 @since LibreOffice 5.0
*/ */
template<char C> bool operator !=( template<char C> bool operator !=(
OUString const & string, OUStringLiteral1<C> literal) OUString const & string, OUStringLiteral1<C> literal)
......
...@@ -431,7 +431,7 @@ namespace css = ::com::sun::star; ...@@ -431,7 +431,7 @@ namespace css = ::com::sun::star;
/** C++11 "constexpr" feature. /** C++11 "constexpr" feature.
@since LibreOffice 4.5 @since LibreOffice 5.0
*/ */
#if HAVE_CXX11_CONSTEXPR #if HAVE_CXX11_CONSTEXPR
#define SAL_CONSTEXPR constexpr #define SAL_CONSTEXPR constexpr
......
...@@ -27,7 +27,7 @@ interface XReadWriteAccess { ...@@ -27,7 +27,7 @@ interface XReadWriteAccess {
interface com::sun::star::util::XChangesBatch; interface com::sun::star::util::XChangesBatch;
// @since LibreOffice 4.5 // @since LibreOffice 5.0
interface com::sun::star::beans::XHierarchicalPropertySetInfo; interface com::sun::star::beans::XHierarchicalPropertySetInfo;
}; };
......
...@@ -16,7 +16,7 @@ module com { module sun { module star { module i18n { ...@@ -16,7 +16,7 @@ module com { module sun { module star { module i18n {
/** Access a locale specific calendar. /** Access a locale specific calendar.
@since LibreOffice 4.5 @since LibreOffice 5.0
*/ */
service LocaleCalendar2 : XCalendar4; service LocaleCalendar2 : XCalendar4;
......
...@@ -23,7 +23,7 @@ module com { module sun { module star { module i18n { ...@@ -23,7 +23,7 @@ module com { module sun { module star { module i18n {
<p> It is derived from ::com::sun::star::i18n::XCalendar3 and <p> It is derived from ::com::sun::star::i18n::XCalendar3 and
provides additional methods to set and get the local time. </p> provides additional methods to set and get the local time. </p>
@since LibreOffice 4.5 @since LibreOffice 5.0
*/ */
interface XCalendar4 : com::sun::star::i18n::XCalendar3 interface XCalendar4 : com::sun::star::i18n::XCalendar3
{ {
......
...@@ -198,13 +198,13 @@ published service SpreadsheetDocumentSettings ...@@ -198,13 +198,13 @@ published service SpreadsheetDocumentSettings
<p>No modification applied if the record changes protection is activated <p>No modification applied if the record changes protection is activated
information given by SpreadsheetDocumentSettings::IsRecordChangesProtected</p> information given by SpreadsheetDocumentSettings::IsRecordChangesProtected</p>
@since LibreOffice 4.5 @since LibreOffice 5.0
*/ */
[optional, property] boolean RecordChanges; [optional, property] boolean RecordChanges;
/** specifies whether changes record is protected. /** specifies whether changes record is protected.
@since LibreOffice 4.5 @since LibreOffice 5.0
*/ */
[readonly,optional, property] boolean IsRecordChangesProtected; [readonly,optional, property] boolean IsRecordChangesProtected;
......
...@@ -678,7 +678,7 @@ LIBO_UDK_4.3 { # symbols available in >= LibO 4.3 ...@@ -678,7 +678,7 @@ LIBO_UDK_4.3 { # symbols available in >= LibO 4.3
osl_areCommandArgsSet; osl_areCommandArgsSet;
} LIBO_UDK_4.2; } LIBO_UDK_4.2;
LIBO_UDK_4.5 { # symbols available in >= LibO 4.5 LIBO_UDK_5.0 { # symbols available in >= LibO 5.0
global: global:
rtl_secureZeroMemory; rtl_secureZeroMemory;
} LIBO_UDK_4.3; } LIBO_UDK_4.3;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment