From 95c0b24cd824321e59ae31d5bd78bae62566499b Mon Sep 17 00:00:00 2001 From: Thiago Macieira Date: Tue, 31 Jul 2018 11:47:01 -0700 Subject: Add "qt_" prefix to asciiToDouble and doubleToAscii functions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: Ie01831ddac5446fdbdeefffd154688839acbe838 Reviewed-by: André Hartmann Reviewed-by: Edward Welbourne --- src/corelib/tools/qbytearray.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/corelib/tools/qbytearray.cpp') diff --git a/src/corelib/tools/qbytearray.cpp b/src/corelib/tools/qbytearray.cpp index eb360bcad7..3560b21653 100644 --- a/src/corelib/tools/qbytearray.cpp +++ b/src/corelib/tools/qbytearray.cpp @@ -4142,8 +4142,8 @@ double QByteArray::toDouble(bool *ok) const QByteArray nulled = nulTerminated(); bool nonNullOk = false; int processed = 0; - double d = asciiToDouble(nulled.constData(), nulled.length(), - nonNullOk, processed, WhitespacesAllowed); + double d = qt_asciiToDouble(nulled.constData(), nulled.length(), + nonNullOk, processed, WhitespacesAllowed); if (ok) *ok = nonNullOk; return d; -- cgit v1.2.3