diff options
Diffstat (limited to 'src/cthost.h')
-rw-r--r-- | src/cthost.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/cthost.h b/src/cthost.h index 6d601c3..f76f0b1 100644 --- a/src/cthost.h +++ b/src/cthost.h @@ -12,13 +12,13 @@ #ifndef CTHOST_H #define CTHOST_H -// Do not introduce any Qt or KDE dependencies into the "CT"-prefixed classes. +// Do not introduce any TQt or KDE dependencies into the "CT"-prefixed classes. // I want to be able to reuse these classes with another GUI toolkit. -GM 11/99 #include <vector> #include <string> -#include <qstring.h> // Whatever +#include <tqstring.h> // Whatever class CTCron; struct passwd; @@ -78,7 +78,7 @@ public: /** * Error message */ - QString errorMessage() { QString r = error; error = QString::null; return r; } + TQString errorMessage() { TQString r = error; error = TQString::null; return r; } /** @@ -110,7 +110,7 @@ private: CTCron* createCTCron(bool _syscron = false, std::string _login = ""); CTCron* createCTCron(const struct passwd *); - QString error; + TQString error; }; typedef std::vector<CTCron*>::iterator CTCronIterator; |