summaryrefslogtreecommitdiffstats
path: root/kdpkg/process.h
diff options
context:
space:
mode:
Diffstat (limited to 'kdpkg/process.h')
-rw-r--r--kdpkg/process.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/kdpkg/process.h b/kdpkg/process.h
index c2cbe8b..68ffea4 100644
--- a/kdpkg/process.h
+++ b/kdpkg/process.h
@@ -11,22 +11,23 @@ class Process;
-class Process : public QObject {
+class Process : public TQObject {
Q_OBJECT
+ TQ_OBJECT
public:
Process();
~Process();
- QString getBuffer();
+ TQString getBuffer();
int exitStatus();
bool normalExit();
- void setCommand(QString command);
+ void setCommand(TQString command);
void start(bool block=true);
protected:
KProcess* _process;
- QString _buffer;
+ TQString _buffer;
protected slots:
void slotProcessOutput(KProcess* process, char* buffer, int buflen);