summaryrefslogtreecommitdiffstats
path: root/src/numerictypes.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/numerictypes.cpp')
-rw-r--r--src/numerictypes.cpp4
1 files changed, 2 insertions, 2 deletions
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;
}