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 706e554..7a80368 100644
--- a/src/numerictypes.cpp
+++ b/src/numerictypes.cpp
@@ -38,7 +38,7 @@ TQString convertToString(const mpfr_ptr &number)
TQRegExp zeroKiller ("0*$");
mp_exp_t exp;
int desiredPrecision = Abakus::m_prec;
- TQString decimalSymbol = KGlobal::locale()->decimalSymbol();
+ TQString decimalSymbol = TDEGlobal::locale()->decimalSymbol();
if(desiredPrecision < 0)
desiredPrecision = 8;
@@ -175,7 +175,7 @@ namespace Abakus
TQString convertToString(const HNumber &num)
{
TQString str = HMath::formatGenString(num, m_prec);
- TQString decimalSymbol = KGlobal::locale()->decimalSymbol();
+ TQString decimalSymbol = TDEGlobal::locale()->decimalSymbol();
str.replace('.', decimalSymbol);
TQStringList parts = TQStringList::split("e", str);