summaryrefslogtreecommitdiffstats
path: root/kdat/FormatOptDlg.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kdat/FormatOptDlg.cpp')
-rw-r--r--kdat/FormatOptDlg.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kdat/FormatOptDlg.cpp b/kdat/FormatOptDlg.cpp
index 81a74f4..223e5e8 100644
--- a/kdat/FormatOptDlg.cpp
+++ b/kdat/FormatOptDlg.cpp
@@ -108,7 +108,7 @@ FormatOptDlg::FormatOptDlg( const TQString & def, TQWidget* parent, const char*
size /= 1024;
_tapeSizeUnits->setCurrentItem( 0 );
}
- _tapeSize->setText( KGlobal::locale()->formatNumber(size, 0) );
+ _tapeSize->setText( TDEGlobal::locale()->formatNumber(size, 0) );
}
FormatOptDlg::~FormatOptDlg()
@@ -119,7 +119,7 @@ void FormatOptDlg::okClicked()
{
_name = _entry->text();
- _size = (int)KGlobal::locale()->readNumber( _tapeSize->text() );
+ _size = (int)TDEGlobal::locale()->readNumber( _tapeSize->text() );
if ( _tapeSizeUnits->currentItem() == 0 ) {
// MB
_size *= 1024;