summaryrefslogtreecommitdiffstats
path: root/kioslave/floppy/program.h
diff options
context:
space:
mode:
Diffstat (limited to 'kioslave/floppy/program.h')
-rw-r--r--kioslave/floppy/program.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/kioslave/floppy/program.h b/kioslave/floppy/program.h
index 29ea634ad..409603689 100644
--- a/kioslave/floppy/program.h
+++ b/kioslave/floppy/program.h
@@ -20,7 +20,7 @@
#ifndef PROGRAM_H
#define PROGRAM_H
-#include <qstringlist.h>
+#include <tqstringlist.h>
/**
* start programs and write to thieir stdin, stderr,
@@ -29,7 +29,7 @@
class Program
{
public:
- Program(const QStringList &args);
+ Program(const TQStringList &args);
~Program();
bool start();
bool isRunning();
@@ -45,7 +45,7 @@ protected:
int mStdin[2];
int mStderr[2];
int m_pid;
- QStringList mArgs;
+ TQStringList mArgs;
bool mStarted;
};