summaryrefslogtreecommitdiff
path: root/sal/inc/rtl/ustring.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sal/inc/rtl/ustring.hxx')
-rw-r--r--sal/inc/rtl/ustring.hxx9
1 files changed, 6 insertions, 3 deletions
diff --git a/sal/inc/rtl/ustring.hxx b/sal/inc/rtl/ustring.hxx
index 2afd95cc62f0..768f5521303d 100644
--- a/sal/inc/rtl/ustring.hxx
+++ b/sal/inc/rtl/ustring.hxx
@@ -1828,7 +1828,8 @@ public:
@param radix the radix (between 2 and 36)
@return the int32 represented from this string.
- 0 if this string represents no number.
+ 0 if this string represents no number or one of too large
+ magnitude.
*/
sal_Int32 toInt32( sal_Int16 radix = 10 ) const SAL_THROW(())
{
@@ -1842,7 +1843,8 @@ public:
@param radix the radix (between 2 and 36)
@return the int64 represented from this string.
- 0 if this string represents no number.
+ 0 if this string represents no number or one of too large
+ magnitude.
*/
sal_Int64 toInt64( sal_Int16 radix = 10 ) const SAL_THROW(())
{
@@ -1856,7 +1858,8 @@ public:
@param radix the radix (between 2 and 36)
@return the uint64 represented from this string.
- 0 if this string represents no number.
+ 0 if this string represents no number or one of too large
+ magnitude.
@since LibreOffice 4.1
*/