summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-01 08:05:26 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-01 08:05:26 -0600
commit0f2dc8b9f38b8cbb3cd1769173a4f3ed32a7a189 (patch)
tree3fc7f6bd9686f5a417d40e6a866cb9211bdddc7f /src
parentb3a2f2e9789ecaf32dd5981e746130894c8bcf10 (diff)
downloadktechlab-0f2dc8b9f38b8cbb3cd1769173a4f3ed32a7a189.tar.gz
ktechlab-0f2dc8b9f38b8cbb3cd1769173a4f3ed32a7a189.zip
Rename KLocale to enhance compatibility with KDE4
Diffstat (limited to 'src')
-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 50b5272..c847ae3 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 = TDEGlobal::locale();
+ TDELocale * 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 = TDEGlobal::locale();
+ TDELocale * locale = TDEGlobal::locale();
return locale->formatNumber( val, 3-leftDigits );
}