summaryrefslogtreecommitdiffstats
path: root/src/corelib/text/qlocale_tools.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/corelib/text/qlocale_tools.cpp')
-rw-r--r--src/corelib/text/qlocale_tools.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/corelib/text/qlocale_tools.cpp b/src/corelib/text/qlocale_tools.cpp
index 50e410daf4..9466edb234 100644
--- a/src/corelib/text/qlocale_tools.cpp
+++ b/src/corelib/text/qlocale_tools.cpp
@@ -86,9 +86,10 @@ void qt_doubleToAscii(double d, QLocaleData::DoubleForm form, int precision, cha
}
// Detect special numbers (nan, +/-inf)
- // We cannot use the high-level API of libdouble-conversion as we need to apply locale-specific
- // formatting, such as decimal points, thousands-separators, etc. Because of this, we have to
- // check for infinity and NaN before calling DoubleToAscii.
+ // We cannot use the high-level API of libdouble-conversion as we need to
+ // apply locale-specific formatting, such as decimal points, grouping
+ // separators, etc. Because of this, we have to check for infinity and NaN
+ // before calling DoubleToAscii.
if (qt_is_inf(d)) {
sign = d < 0;
if (bufSize >= 3) {