diff options
Diffstat (limited to 'src/questions.h')
-rw-r--r-- | src/questions.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/questions.h b/src/questions.h index fb3f882..3b14b68 100644 --- a/src/questions.h +++ b/src/questions.h @@ -22,20 +22,20 @@ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ #include "tork.h" -#include <qstring.h> +#include <ntqstring.h> /** A variable allowed in the configuration file or on the command line. */ typedef struct question_t { const char *logquestion; /**< The full keyword (case insensitive). */ - const QString headline; /**< String (or null) describing initial value. */ - const QString body; /**< String (or null) describing initial value. */ + const TQString headline; /**< String (or null) describing initial value. */ + const TQString body; /**< String (or null) describing initial value. */ char torsaid[250]; /**< String (or null) describing initial value. */ - const QString question; /**< String (or null) describing initial value. */ + const TQString question; /**< String (or null) describing initial value. */ display_status_t state; /**< The type of the value. */ bool persistent; bool showstopper; - const QString type; /**< String (or null) describing initial value. */ + const TQString type; /**< String (or null) describing initial value. */ const char *icon; /**< String (or null) describing initial value. */ bool (tork::*pt2Member2)(); void (tork::*silentAction)(); |