summaryrefslogtreecommitdiffstats
path: root/languages/pascal/backgroundparser.h
diff options
context:
space:
mode:
Diffstat (limited to 'languages/pascal/backgroundparser.h')
-rw-r--r--languages/pascal/backgroundparser.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/languages/pascal/backgroundparser.h b/languages/pascal/backgroundparser.h
index 7118c7f2..2ad77f83 100644
--- a/languages/pascal/backgroundparser.h
+++ b/languages/pascal/backgroundparser.h
@@ -12,24 +12,24 @@
#ifndef BACKGROUNDPARSER_H
#define BACKGROUNDPARSER_H
-#include <qthread.h>
-#include <qstring.h>
+#include <tqthread.h>
+#include <tqstring.h>
class ProblemReporter;
class BackgroundParser: public QThread{
public:
BackgroundParser( ProblemReporter* reporter,
- const QString& source,
- const QString& filename );
+ const TQString& source,
+ const TQString& filename );
virtual ~BackgroundParser();
virtual void run();
private:
ProblemReporter* m_reporter;
- QString m_source;
- QString m_fileName;
+ TQString m_source;
+ TQString m_fileName;
};
#endif