summaryrefslogtreecommitdiffstats
path: root/src/micro/asminfo.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/micro/asminfo.cpp')
-rw-r--r--src/micro/asminfo.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/micro/asminfo.cpp b/src/micro/asminfo.cpp
index 3a12b57..6006c63 100644
--- a/src/micro/asminfo.cpp
+++ b/src/micro/asminfo.cpp
@@ -22,7 +22,7 @@ AsmInfo::~AsmInfo()
}
-void AsmInfo::addInstruction( const QString & operand, const QString & description, const QString & opcode )
+void AsmInfo::addInstruction( const TQString & operand, const TQString & description, const TQString & opcode )
{
Instruction instruction;
instruction.operand = operand;
@@ -33,7 +33,7 @@ void AsmInfo::addInstruction( const QString & operand, const QString & descripti
}
-QString AsmInfo::setToString( Set set )
+TQString AsmInfo::setToString( Set set )
{
switch (set)
{
@@ -48,11 +48,11 @@ QString AsmInfo::setToString( Set set )
}
kdWarning() << k_funcinfo << "Unrecognized set="<<set<<endl;
- return QString::null;
+ return TQString();
}
-AsmInfo::Set AsmInfo::stringToSet( const QString & set )
+AsmInfo::Set AsmInfo::stringToSet( const TQString & set )
{
if ( set == "PIC12" )
return PIC12;