summaryrefslogtreecommitdiffstats
path: root/src/gui/doublespinbox.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-24 13:25:21 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-24 13:25:21 -0600
commitb0a967eb693adc458fdf7d070379b8c1ec3e9415 (patch)
tree69fa22da8d08920ca8b1049861711e77a55512b9 /src/gui/doublespinbox.cpp
parenta19dd7fc8e64bebb22b87a2d3a9a2601b662b35d (diff)
downloadktechlab-b0a967eb693adc458fdf7d070379b8c1ec3e9415.tar.gz
ktechlab-b0a967eb693adc458fdf7d070379b8c1ec3e9415.zip
Rename KGlobal, KProcess, and KClipboard to avoid conflicts with KDE4
Diffstat (limited to 'src/gui/doublespinbox.cpp')
-rw-r--r--src/gui/doublespinbox.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/doublespinbox.cpp b/src/gui/doublespinbox.cpp
index 4418538..50b5272 100644
--- a/src/gui/doublespinbox.cpp
+++ b/src/gui/doublespinbox.cpp
@@ -146,7 +146,7 @@ double DoubleSpinBox::getMult()
double DoubleSpinBox::getDisplayedNumber( bool * ok )
{
- KLocale * locale = KGlobal::locale();
+ KLocale * locale = TDEGlobal::locale();
// Fetch the characters that we don't want to discard
const TQString exclude = locale->decimalSymbol()
@@ -194,7 +194,7 @@ TQString DoubleSpinBox::mapValueToText( int v )
else if ( leftDigits > 3 )
leftDigits = 3;
- KLocale * locale = KGlobal::locale();
+ KLocale * locale = TDEGlobal::locale();
return locale->formatNumber( val, 3-leftDigits );
}