diff options
Diffstat (limited to 'plugins/infowidget/floatspinbox.cpp')
-rw-r--r-- | plugins/infowidget/floatspinbox.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/infowidget/floatspinbox.cpp b/plugins/infowidget/floatspinbox.cpp index 883c7a0..641be87 100644 --- a/plugins/infowidget/floatspinbox.cpp +++ b/plugins/infowidget/floatspinbox.cpp @@ -94,7 +94,7 @@ TQString kt::FloatSpinBox::mapValueToText( int value ) { /// This is called from TQSpinBox, which passes an int. /// As we don't use the TQSpinBox's internal value, we ignore it. - TQString t = KGlobal::locale()->formatNumber( m_value, m_precision_digits); + TQString t = TDEGlobal::locale()->formatNumber( m_value, m_precision_digits); editor()->setText(t); return t; } @@ -104,7 +104,7 @@ int kt::FloatSpinBox::mapTextToValue( bool * ok ) /// This is called from TQSpinBox, which needs an int for return. /// As we don't use the TQSpinBox's internal value, we only return 0. - float value = KGlobal::locale()->readNumber(text(), ok); + float value = TDEGlobal::locale()->readNumber(text(), ok); if (*ok) { setValue(value); |