summaryrefslogtreecommitdiffstats
path: root/kfind/kfwin.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-25 00:30:47 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-25 00:30:47 -0600
commitcc74f360bb40da3d79f58048f8e8611804980aa6 (patch)
treec4385d2c16b904757b1c8bb998a4aec6993373f7 /kfind/kfwin.cpp
parent79b21d47bce1ee428affc97534cd8b257232a871 (diff)
downloadtdebase-cc74f360bb40da3d79f58048f8e8611804980aa6.tar.gz
tdebase-cc74f360bb40da3d79f58048f8e8611804980aa6.zip
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'kfind/kfwin.cpp')
-rw-r--r--kfind/kfwin.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kfind/kfwin.cpp b/kfind/kfwin.cpp
index 740c7ae39..d0f7fb513 100644
--- a/kfind/kfwin.cpp
+++ b/kfind/kfwin.cpp
@@ -64,7 +64,7 @@ KfFileLVI::KfFileLVI(KfindWindow* lv, const KFileItem &item, const TQString& mat
TQString size = TDEGlobal::locale()->formatNumber(item.size(), 0);
TQDateTime dt;
- dt.setTime_t(item.time(KIO::UDS_MODIFICATION_TIME));
+ dt.setTime_t(item.time(TDEIO::UDS_MODIFICATION_TIME));
TQString date = TDEGlobal::locale()->formatDateTime(dt);
int perm_index;
@@ -98,7 +98,7 @@ TQString KfFileLVI::key(int column, bool) const
return TQString().sprintf("%010d", fileInfo->size());
case 3:
// Returns time in secs from 1/1/1970. Used for sorting
- return TQString().sprintf("%010ld", fileitem.time(KIO::UDS_MODIFICATION_TIME));
+ return TQString().sprintf("%010ld", fileitem.time(TDEIO::UDS_MODIFICATION_TIME));
}
return text(column);
@@ -296,7 +296,7 @@ void KfindWindow::deleteFiles()
KfFileLVI *item = (KfFileLVI *) selected.at(i);
KFileItem file = item->fileitem;
- KIO::NetAccess::del(file.url(), this);
+ TDEIO::NetAccess::del(file.url(), this);
}
selected.setAutoDelete(true);
}