diff options
author | Mavridis Philippe <[email protected]> | 2021-01-13 19:30:17 +0200 |
---|---|---|
committer | Mavridis Philippe <[email protected]> | 2021-01-13 19:30:17 +0200 |
commit | 357ddeb8afd82d69ef871c146f4fc8f2c67fb17e (patch) | |
tree | dc3ef0e6fedd64f5fb177c114f72e1515a07cd1b /src/ctcron.h | |
parent | c6cbd71bc169ac0e927e52325dbbbcb506abbc73 (diff) | |
download | klamav-357ddeb8afd82d69ef871c146f4fc8f2c67fb17e.tar.gz klamav-357ddeb8afd82d69ef871c146f4fc8f2c67fb17e.zip |
Conversion Qt3->TQt
Signed-off-by: Mavridis Philippe <[email protected]>
Diffstat (limited to 'src/ctcron.h')
-rw-r--r-- | src/ctcron.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/ctcron.h b/src/ctcron.h index b8d03fe..4843dfc 100644 --- a/src/ctcron.h +++ b/src/ctcron.h @@ -12,14 +12,14 @@ #ifndef CTCRON_H #define CTCRON_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 <iostream> -#include <qstring.h> // Anarchy! -WABA +#include <tqstring.h> // Anarchy! -WABA class CTException; class CTTask; @@ -94,7 +94,7 @@ public: /** * Return error description */ - QString errorMessage() { QString r = error; error = QString::null; return r; } + TQString errorMessage() { TQString r = error; error = TQString::null; return r; } /** @@ -138,10 +138,10 @@ private: unsigned int initialTaskCount; unsigned int initialVariableCount; - QString writeCommand; - QString tmpFileName; + TQString writeCommand; + TQString tmpFileName; - QString error; + TQString error; protected: // Initialize member variables from the struct passwd. |