summaryrefslogtreecommitdiffstats
path: root/kpackage/procbuf.h
diff options
context:
space:
mode:
Diffstat (limited to 'kpackage/procbuf.h')
-rw-r--r--kpackage/procbuf.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/kpackage/procbuf.h b/kpackage/procbuf.h
index 8463810..be5bad3 100644
--- a/kpackage/procbuf.h
+++ b/kpackage/procbuf.h
@@ -29,8 +29,8 @@
#include "../config.h"
#include <kprocess.h>
#include <kdialog.h>
-#include <qobject.h>
-#include <qtimer.h>
+#include <tqobject.h>
+#include <tqtimer.h>
#ifndef PROCBUF
#define PROCBUF
@@ -38,7 +38,7 @@
class Modal : public KDialog {
Q_OBJECT
public:
- Modal(QString msg, QWidget *parent, const char * name );
+ Modal(TQString msg, TQWidget *parent, const char * name );
void terminate();
};
@@ -49,16 +49,16 @@ class procbuf: public QObject
public:
procbuf();
~procbuf();
- void setup(QString);
- int start(QString msg, bool errorDlg = TRUE,
- int timeout=0, QString timeMsg = "");
+ void setup(TQString);
+ int start(TQString msg, bool errorDlg = TRUE,
+ int timeout=0, TQString timeMsg = "");
- QString buf;
+ TQString buf;
KProcess *proc;
Modal *m;
- QString command;
+ TQString command;
bool timed;
- QTimer *tm;
+ TQTimer *tm;
public slots:
void slotReadInfo(KProcess *, char *, int);