diff options
author | Timothy Pearson <[email protected]> | 2013-01-24 13:40:58 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-01-24 13:40:58 -0600 |
commit | 5f444a9ea966b68991cef44d2711378ef9ff406d (patch) | |
tree | 07f06257228437d61e24ef7ebe530d365c4ee54c /kdat/FormatOptDlg.cpp | |
parent | 91f62a5883c34899da0137e71f74ceb5c17fc799 (diff) | |
download | tdeadmin-5f444a9ea966b68991cef44d2711378ef9ff406d.tar.gz tdeadmin-5f444a9ea966b68991cef44d2711378ef9ff406d.zip |
Rename KGlobal, KProcess, and KClipboard to avoid conflicts with KDE4
Diffstat (limited to 'kdat/FormatOptDlg.cpp')
-rw-r--r-- | kdat/FormatOptDlg.cpp | 4 |
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; |