summaryrefslogtreecommitdiffstats
path: root/src/numerictypes.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-24 13:17:59 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-24 13:17:59 -0600
commit7dba2f0cd362ac57acdb049156b85d106872ac0e (patch)
tree43d38fd13b2bd9b8265cc581c1fb8d5c72cc2cd2 /src/numerictypes.cpp
parentaf6e6abd16beee8a1712f5464f1e7c79a7cfb179 (diff)
downloadabakus-7dba2f0cd362ac57acdb049156b85d106872ac0e.tar.gz
abakus-7dba2f0cd362ac57acdb049156b85d106872ac0e.zip
Rename KGlobal, KProcess, and KClipboard to avoid conflicts with KDE4
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);