summaryrefslogtreecommitdiffstats
path: root/src/cthost.h
diff options
context:
space:
mode:
authorMavridis Philippe <mavridisf@gmail.com>2021-01-13 19:30:17 +0200
committerMavridis Philippe <mavridisf@gmail.com>2021-01-13 19:30:17 +0200
commit357ddeb8afd82d69ef871c146f4fc8f2c67fb17e (patch)
treedc3ef0e6fedd64f5fb177c114f72e1515a07cd1b /src/cthost.h
parentc6cbd71bc169ac0e927e52325dbbbcb506abbc73 (diff)
downloadklamav-357ddeb8afd82d69ef871c146f4fc8f2c67fb17e.tar.gz
klamav-357ddeb8afd82d69ef871c146f4fc8f2c67fb17e.zip
Conversion Qt3->TQt
Signed-off-by: Mavridis Philippe <mavridisf@gmail.com>
Diffstat (limited to 'src/cthost.h')
-rw-r--r--src/cthost.h8
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;