summaryrefslogtreecommitdiffstats
path: root/kdat/FileInfoWidget.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kdat/FileInfoWidget.cpp')
-rw-r--r--kdat/FileInfoWidget.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kdat/FileInfoWidget.cpp b/kdat/FileInfoWidget.cpp
index 5b75cf7..d5ef7bf 100644
--- a/kdat/FileInfoWidget.cpp
+++ b/kdat/FileInfoWidget.cpp
@@ -143,13 +143,13 @@ void FileInfoWidget::setFile( const TQString & name )
TQDateTime datetime;
datetime.setTime_t(info.st_ctime);
- _ctime->setText( KGlobal::locale()->formatDateTime(datetime, false) );
+ _ctime->setText( TDEGlobal::locale()->formatDateTime(datetime, false) );
datetime.setTime_t(info.st_mtime);
- _mtime->setText( KGlobal::locale()->formatDateTime(datetime, false) );
+ _mtime->setText( TDEGlobal::locale()->formatDateTime(datetime, false) );
datetime.setTime_t(info.st_atime);
- _atime->setText( KGlobal::locale()->formatDateTime(datetime, false) );
+ _atime->setText( TDEGlobal::locale()->formatDateTime(datetime, false) );
_size->setText( Util::bytesToString( info.st_size ) );