summaryrefslogtreecommitdiffstats
path: root/ksysv/ksv_service.h
diff options
context:
space:
mode:
Diffstat (limited to 'ksysv/ksv_service.h')
-rw-r--r--ksysv/ksv_service.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/ksysv/ksv_service.h b/ksysv/ksv_service.h
index cdf42e1..9cab355 100644
--- a/ksysv/ksv_service.h
+++ b/ksysv/ksv_service.h
@@ -15,7 +15,7 @@
#ifndef KSV_SERVICE_H
#define KSV_SERVICE_H
-#include <qstring.h>
+#include <tqstring.h>
/**
* The long description for this class goes here
@@ -31,7 +31,7 @@ public:
/**
* Named constructor
*/
- static KSVService* newService (const QString &name, const QString &basedir);
+ static KSVService* newService (const TQString &name, const TQString &basedir);
/**
* Destructor
@@ -56,7 +56,7 @@ public:
/**
* Returns the description of the service
*/
- QString description () const;
+ TQString description () const;
private:
/**
@@ -76,22 +76,22 @@ protected:
/**
* Constructor
*/
- KSVService (const QString &name, const QString &basedir);
+ KSVService (const TQString &name, const TQString &basedir);
/**
* Name of the service
*/
- QString name_;
+ TQString name_;
/**
* Description of the service (i.e. what it does)
*/
- QString desc_;
+ TQString desc_;
/**
* Base dir for storing runlevel dirs
*/
- QString base_;
+ TQString base_;
int levels, kPriority, sPriority;
};