From b877728731c783fbd7370935a6733c78c25d5ce2 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Thu, 15 Dec 2011 15:29:00 -0600 Subject: Rename a number of old tq methods that are no longer tq specific --- src/numerictypes.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/numerictypes.cpp') diff --git a/src/numerictypes.cpp b/src/numerictypes.cpp index b7d607d..706e554 100644 --- a/src/numerictypes.cpp +++ b/src/numerictypes.cpp @@ -78,7 +78,7 @@ TQString convertToString(const mpfr_ptr &number) if(r.isEmpty()) r = "0"; - r.append(TQString("e%1").tqarg(exp - 1)); + r.append(TQString("e%1").arg(exp - 1)); return sign + l + decimalSymbol + r; } @@ -190,7 +190,7 @@ TQString convertToString(const HNumber &num) str.truncate(str.length() - 1); // Remove trailing period. if(parts.count() > 1 && parts[1] != "0") - str += TQString("e%1").tqarg(parts[1]); + str += TQString("e%1").arg(parts[1]); return str; } -- cgit v1.2.3