summaryrefslogtreecommitdiffstats
path: root/kdbg/envvar.h
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2013-07-03 02:22:47 +0200
committerSlávek Banko <slavek.banko@axis.cz>2013-07-03 02:22:47 +0200
commit9dab0e253ecf583a2cc6ca22e068d4f4022ca4d3 (patch)
tree63c2afb5cbab9420e0d43683e09ddb0092663d49 /kdbg/envvar.h
parent1ace27a9852850ad348dd28679c2fe2b7d2ddc73 (diff)
downloadkdbg-9dab0e253ecf583a2cc6ca22e068d4f4022ca4d3.tar.gz
kdbg-9dab0e253ecf583a2cc6ca22e068d4f4022ca4d3.zip
Initial TQt conversion
Diffstat (limited to 'kdbg/envvar.h')
-rw-r--r--kdbg/envvar.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/kdbg/envvar.h b/kdbg/envvar.h
index 20339b2..c63c45b 100644
--- a/kdbg/envvar.h
+++ b/kdbg/envvar.h
@@ -9,16 +9,16 @@
/*
* Description of environment variables. Note that the name of the variable
- * is given as the key in the QDict, so we don't repeat it here.
+ * is given as the key in the TQDict, so we don't repeat it here.
*/
-class QListViewItem;
+class TQListViewItem;
struct EnvVar {
- QString value;
+ TQString value;
enum EnvVarStatus { EVclean, EVdirty, EVnew, EVdeleted };
EnvVarStatus status;
- QListViewItem* item;
+ TQListViewItem* item;
};
#endif // ENVVAR_H