diff options
Diffstat (limited to 'konq-plugins/fsview/scan.h')
-rw-r--r-- | konq-plugins/fsview/scan.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/konq-plugins/fsview/scan.h b/konq-plugins/fsview/scan.h index ca4ce4f..384a6dc 100644 --- a/konq-plugins/fsview/scan.h +++ b/konq-plugins/fsview/scan.h @@ -27,7 +27,7 @@ #include <tqvaluevector.h> #include <tqfile.h> -/* Use KDE_lstat and KIO::fileoffset_t for 64-bit sizes */ +/* Use KDE_lstat and TDEIO::fileoffset_t for 64-bit sizes */ #include <klargefile.h> #include <kio/global.h> @@ -131,11 +131,11 @@ class ScanFile { public: ScanFile(); - ScanFile(const TQString& n, KIO::fileoffset_t s); + ScanFile(const TQString& n, TDEIO::fileoffset_t s); ~ScanFile(); const TQString& name() { return _name; } - KIO::fileoffset_t size() { return _size; } + TDEIO::fileoffset_t size() { return _size; } /* set listener to get callbacks from this ScanDir */ void setListener(ScanListener* l) { _listener = l; } @@ -143,7 +143,7 @@ class ScanFile private: TQString _name; - KIO::fileoffset_t _size; + TDEIO::fileoffset_t _size; ScanListener* _listener; }; @@ -189,7 +189,7 @@ class ScanDir ScanFileVector& files() { return _files; } ScanDirVector& dirs() { return _dirs; } const TQString& name() { return _name; } - KIO::fileoffset_t size() { update(); return _size; } + TDEIO::fileoffset_t size() { update(); return _size; } unsigned int fileCount() { update(); return _fileCount; } unsigned int dirCount() { update(); return _dirCount; } ScanDir* parent() { return _parent; } @@ -219,7 +219,7 @@ class ScanDir TQString _name; bool _dirty; /* needs a call to update() */ - KIO::fileoffset_t _size, _fileSize; + TDEIO::fileoffset_t _size, _fileSize; unsigned int _fileCount, _dirCount; int _dirsFinished, _data; ScanDir* _parent; |