diff options
Diffstat (limited to 'kdat/TapeInfoWidget.cpp')
-rw-r--r-- | kdat/TapeInfoWidget.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kdat/TapeInfoWidget.cpp b/kdat/TapeInfoWidget.cpp index 1455743..de496c6 100644 --- a/kdat/TapeInfoWidget.cpp +++ b/kdat/TapeInfoWidget.cpp @@ -218,7 +218,7 @@ bool TapeInfoWidget::isModified() return TRUE; } - int size = (int)KGlobal::locale()->readNumber( _tapeSize->text() ); + int size = (int)TDEGlobal::locale()->readNumber( _tapeSize->text() ); if ( _tapeSizeUnits->currentItem() == 0 ) { // MB size *= 1024; @@ -254,7 +254,7 @@ void TapeInfoWidget::slotApply() return; } - int size = (int)KGlobal::locale()->readNumber( _tapeSize->text() ); + int size = (int)TDEGlobal::locale()->readNumber( _tapeSize->text() ); if ( _tapeSizeUnits->currentItem() == 0 ) { // MB size *= 1024; |