summaryrefslogtreecommitdiffstats
path: root/src/questions.h
diff options
context:
space:
mode:
authorSlávek Banko <[email protected]>2013-07-27 16:57:53 +0200
committerSlávek Banko <[email protected]>2013-07-27 18:48:46 +0200
commit7c2bc4b5ce4fc1a72868aa949e9ec49fbe2e7931 (patch)
tree4655c7263ca5c64d23d10167cb459dd9cb253815 /src/questions.h
parent88ea2b6cd4382627fb6efca9cc54825aee881d1e (diff)
downloadtork-7c2bc4b5ce4fc1a72868aa949e9ec49fbe2e7931.tar.gz
tork-7c2bc4b5ce4fc1a72868aa949e9ec49fbe2e7931.zip
Initial TQt conversion
Diffstat (limited to 'src/questions.h')
-rw-r--r--src/questions.h10
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)();