aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/quicktemplates2/qquickspinbox.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/quicktemplates2/qquickspinbox.cpp b/src/quicktemplates2/qquickspinbox.cpp
index 7f4f59fa..6af1d8e8 100644
--- a/src/quicktemplates2/qquickspinbox.cpp
+++ b/src/quicktemplates2/qquickspinbox.cpp
@@ -629,7 +629,8 @@ void QQuickSpinBox::setValidator(QValidator *validator)
is the value to be converted, and the optional second argument is the
locale that should be used for the conversion, if applicable.
- The default implementation does the conversion using \l {QtQml::Locale}{Number.toLocaleString()}:
+ The default implementation does the conversion using
+ \l {QtQml::Number::toLocaleString()}{Number.toLocaleString}():
\code
textFromValue: function(value, locale) { return Number(value).toLocaleString(locale, 'f', 0); }