QString: Add missing number() crosslinks to setNum()
Change-Id: I22a4c86034b399782115bb078c298b211095476a Reviewed-by: Christian Ehrlicher <ch.ehrlicher@gmx.de> Reviewed-by: Paul Wicking <paul.wicking@qt.io>bb10
parent
d1186f9299
commit
8cf4ce0fea
|
|
@ -7505,6 +7505,8 @@ float QString::toFloat(bool *ok) const
|
|||
The formatting always uses QLocale::C, i.e., English/UnitedStates.
|
||||
To get a localized string representation of a number, use
|
||||
QLocale::toString() with the appropriate locale.
|
||||
|
||||
\sa number()
|
||||
*/
|
||||
|
||||
/*! \fn QString &QString::setNum(uint n, int base)
|
||||
|
|
@ -7562,6 +7564,8 @@ QString &QString::setNum(qulonglong n, int base)
|
|||
The formatting always uses QLocale::C, i.e., English/UnitedStates.
|
||||
To get a localized string representation of a number, use
|
||||
QLocale::toString() with the appropriate locale.
|
||||
|
||||
\sa number()
|
||||
*/
|
||||
|
||||
QString &QString::setNum(double n, char f, int prec)
|
||||
|
|
@ -7580,6 +7584,8 @@ QString &QString::setNum(double n, char f, int prec)
|
|||
The formatting always uses QLocale::C, i.e., English/UnitedStates.
|
||||
To get a localized string representation of a number, use
|
||||
QLocale::toString() with the appropriate locale.
|
||||
|
||||
\sa number()
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue