summaryrefslogtreecommitdiffstats
path: root/kdat/TapeDrive.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kdat/TapeDrive.cpp')
-rw-r--r--kdat/TapeDrive.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kdat/TapeDrive.cpp b/kdat/TapeDrive.cpp
index 64cb46f..2e4c59b 100644
--- a/kdat/TapeDrive.cpp
+++ b/kdat/TapeDrive.cpp
@@ -24,7 +24,7 @@
#include <unistd.h>
#include <time.h>
-#include <qfile.h>
+#include <tqfile.h>
#include <kmessagebox.h>
#include <kapplication.h>
@@ -430,9 +430,9 @@ void TapeDrive::open()
close();
// Open the tape device.
- _fd = ::open( QFile::encodeName(Options::instance()->getTapeDevice()), O_RDWR );
+ _fd = ::open( TQFile::encodeName(Options::instance()->getTapeDevice()), O_RDWR );
if ( _fd < 0 ) {
- _fd = ::open( QFile::encodeName(Options::instance()->getTapeDevice()), O_RDONLY );
+ _fd = ::open( TQFile::encodeName(Options::instance()->getTapeDevice()), O_RDONLY );
if ( _fd < 0 ) {
return;
} else {