summaryrefslogtreecommitdiffstats
path: root/kbugbuster/backend/bugdetailspart.h
diff options
context:
space:
mode:
Diffstat (limited to 'kbugbuster/backend/bugdetailspart.h')
-rw-r--r--kbugbuster/backend/bugdetailspart.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/kbugbuster/backend/bugdetailspart.h b/kbugbuster/backend/bugdetailspart.h
index 483057c8..7e1cfe7b 100644
--- a/kbugbuster/backend/bugdetailspart.h
+++ b/kbugbuster/backend/bugdetailspart.h
@@ -1,21 +1,21 @@
#ifndef BUGDETAILSPART_H
#define BUGDETAILSPART_H
-#include <qvaluelist.h>
-#include <qdatetime.h>
+#include <tqvaluelist.h>
+#include <tqdatetime.h>
struct BugDetailsPart
{
- typedef QValueList<BugDetailsPart> List;
+ typedef TQValueList<BugDetailsPart> List;
BugDetailsPart () {}
- BugDetailsPart( const Person &_sender, const QDateTime &_date,
- const QString &_text )
+ BugDetailsPart( const Person &_sender, const TQDateTime &_date,
+ const TQString &_text )
: sender( _sender ), date( _date ), text( _text ) {}
Person sender;
- QDateTime date;
- QString text;
+ TQDateTime date;
+ TQString text;
};
#endif