BNumberFormat docs: remove const qualifier

This commit is contained in:
John Scipione
2017-11-10 14:45:39 -08:00
parent e08fce49e7
commit 021c2fec4f
+6 -8
View File
@@ -50,7 +50,7 @@
/*! /*!
\fn ssize_t BNumberFormat::Format(char* string, size_t maxSize, \fn ssize_t BNumberFormat::Format(char* string, size_t maxSize,
const double value) const const double value)
\brief Format the \c double \a value as a string and put the result \brief Format the \c double \a value as a string and put the result
into \a string up to \a maxSize bytes in the current locale. into \a string up to \a maxSize bytes in the current locale.
@@ -74,8 +74,7 @@
/*! /*!
\fn status_t BNumberFormat::Format(BString& string, \fn status_t BNumberFormat::Format(BString& string, const double value)
const double value) const
\brief \brief Format the \c double \a value as a string and put the \brief \brief Format the \c double \a value as a string and put the
result into \a string in the current locale. result into \a string in the current locale.
@@ -98,7 +97,7 @@
/*! /*!
\fn ssize_t BNumberFormat::Format(char* string, size_t maxSize, \fn ssize_t BNumberFormat::Format(char* string, size_t maxSize,
const int32 value) const const int32 value)
\brief Format the \c int32 \a value as a string and put the result \brief Format the \c int32 \a value as a string and put the result
into \a string up to \a maxSize bytes in the current locale. into \a string up to \a maxSize bytes in the current locale.
@@ -122,8 +121,7 @@
/*! /*!
\fn status_t BNumberFormat::Format(BString& string, \fn status_t BNumberFormat::Format(BString& string, const int32 value)
const int32 value) const
\brief Format the \c int32 \a value as a string and put the result \brief Format the \c int32 \a value as a string and put the result
into \a string in the current locale. into \a string in the current locale.
@@ -146,7 +144,7 @@
/*! /*!
\fn ssize_t BNumberFormat::FormatMonetary(char* string, size_t maxSize, \fn ssize_t BNumberFormat::FormatMonetary(char* string, size_t maxSize,
const double value) const const double value)
\brief Format the \c double \a value as a monetary string and put the \brief Format the \c double \a value as a monetary string and put the
result into \a string up to \a maxSize bytes in the current locale. result into \a string up to \a maxSize bytes in the current locale.
@@ -172,7 +170,7 @@
/*! /*!
\fn status_t BNumberFormat::FormatMonetary(BString& string, \fn status_t BNumberFormat::FormatMonetary(BString& string,
const double value) const const double value)
\brief Format the \c double \a value as a monetary string and put \brief Format the \c double \a value as a monetary string and put
the result into \a string in the current locale. the result into \a string in the current locale.