summaryrefslogtreecommitdiffstats
path: root/src/languages/asmparser.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/languages/asmparser.h')
-rw-r--r--src/languages/asmparser.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/languages/asmparser.h b/src/languages/asmparser.h
index ab21837..e0c1e2c 100644
--- a/src/languages/asmparser.h
+++ b/src/languages/asmparser.h
@@ -11,7 +11,7 @@
#ifndef ASMPARSER_H
#define ASMPARSER_H
-#include <qstring.h>
+#include <tqstring.h>
class GpsimDebugger;
@@ -24,7 +24,7 @@ PIC ID
class AsmParser
{
public:
- AsmParser( const QString &url );
+ AsmParser( const TQString &url );
~AsmParser();
enum Type { Relocatable, Absolute };
@@ -39,7 +39,7 @@ class AsmParser
/**
* Returns the PIC ID
*/
- QString picID() const { return m_picID; }
+ TQString picID() const { return m_picID; }
/**
* Returns whether or not the assembly file contained the "set radix"
* directive
@@ -52,8 +52,8 @@ class AsmParser
Type type() const { return m_type; }
protected:
- const QString m_url;
- QString m_picID;
+ const TQString m_url;
+ TQString m_picID;
bool m_bContainsRadix;
Type m_type;
};