diff options
author | Timothy Pearson <[email protected]> | 2013-01-24 13:17:59 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-01-24 13:17:59 -0600 |
commit | 7dba2f0cd362ac57acdb049156b85d106872ac0e (patch) | |
tree | 43d38fd13b2bd9b8265cc581c1fb8d5c72cc2cd2 /src/parser.yy | |
parent | af6e6abd16beee8a1712f5464f1e7c79a7cfb179 (diff) | |
download | abakus-7dba2f0cd362ac57acdb049156b85d106872ac0e.tar.gz abakus-7dba2f0cd362ac57acdb049156b85d106872ac0e.zip |
Rename KGlobal, KProcess, and KClipboard to avoid conflicts with KDE4
Diffstat (limited to 'src/parser.yy')
-rw-r--r-- | src/parser.yy | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parser.yy b/src/parser.yy index 6978cc1..23c6867 100644 --- a/src/parser.yy +++ b/src/parser.yy @@ -315,7 +315,7 @@ TERM: VALUE { $$ = $1; } VALUE: NUMBER { $$ = $1; } NUMBER: NUM { - KLocale *locale = KGlobal::locale(); + KLocale *locale = TDEGlobal::locale(); QChar decimal = locale->decimalSymbol()[0]; // Replace current decimal separator with US Decimal separator to be |