summaryrefslogtreecommitdiffstats
path: root/src/processcontroller.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/processcontroller.h')
-rw-r--r--src/processcontroller.h33
1 files changed, 17 insertions, 16 deletions
diff --git a/src/processcontroller.h b/src/processcontroller.h
index 22183df..51696f7 100644
--- a/src/processcontroller.h
+++ b/src/processcontroller.h
@@ -21,10 +21,10 @@
#ifndef PROCESSCONTROLLER_H
#define PROCESSCONTROLLER_H
-#include <qprocess.h>
-#include <qstring.h>
-#include <qtimer.h>
-#include <qobject.h>
+#include <tqprocess.h>
+#include <tqstring.h>
+#include <tqtimer.h>
+#include <tqobject.h>
#include <kdeversion.h>
#if KDE_IS_VERSION(3,3,90)
#include <dnssd/remoteservice.h>
@@ -32,25 +32,26 @@
class ProcessListViewItem;
-class ProcessController : public QObject
+class ProcessController : public TQObject
{
Q_OBJECT
+ TQ_OBJECT
public:
- ProcessController(ProcessListViewItem * parent);
+ ProcessController(ProcessListViewItem * tqparent);
~ProcessController();
- bool getStatus();
+ bool gettqStatus();
bool getAutomatic();
void setAutomatic(bool a);
#if KDE_IS_VERSION(3,3,90)
DNSSD::RemoteService::Ptr getService();
void setService(DNSSD::RemoteService::Ptr service);
#endif
- void setUrl(QString Url);
- void setDescription(QString Description);
- QString getUrl();
- QString getDescription();
- void startRip(QString destination, QString time);
+ void setUrl(TQString Url);
+ void setDescription(TQString Description);
+ TQString getUrl();
+ TQString getDescription();
+ void startRip(TQString destination, TQString time);
void stopRip();
protected slots:
@@ -58,14 +59,14 @@ protected slots:
private:
ProcessListViewItem * myParent;
- bool myStatus;
+ bool mytqStatus;
bool myAutomatic;
#if KDE_IS_VERSION(3,3,90)
DNSSD::RemoteService::Ptr myService;
#endif
- QProcess * myProcess;
- QString myUrl;
- QString myDescription;
+ TQProcess * myProcess;
+ TQString myUrl;
+ TQString myDescription;
};
#endif