summaryrefslogtreecommitdiffstats
path: root/src/micro/microlibrary.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-29 16:05:55 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-29 16:05:55 +0000
commit87a016680e3677da3993f333561e79eb0cead7d5 (patch)
treecbda2b4df8b8ee0d8d1617e6c75bec1e3ee0ccba /src/micro/microlibrary.h
parent6ce3d1ad09c1096b5ed3db334e02859e45d5c32b (diff)
downloadktechlab-87a016680e3677da3993f333561e79eb0cead7d5.tar.gz
ktechlab-87a016680e3677da3993f333561e79eb0cead7d5.zip
TQt4 port ktechlab
This enables compilation under both Qt3 and Qt4 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/ktechlab@1238801 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/micro/microlibrary.h')
-rw-r--r--src/micro/microlibrary.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/micro/microlibrary.h b/src/micro/microlibrary.h
index 537cf6c..0484ca0 100644
--- a/src/micro/microlibrary.h
+++ b/src/micro/microlibrary.h
@@ -14,13 +14,13 @@
#include "asminfo.h"
#include "microinfo.h"
-#include <qstring.h>
-#include <qstringlist.h>
-#include <qvaluelist.h>
+#include <tqstring.h>
+#include <tqstringlist.h>
+#include <tqvaluelist.h>
class MicroInfo;
class MicroLibrary;
-typedef QValueList<MicroInfo*> MicroInfoList;
+typedef TQValueList<MicroInfo*> MicroInfoList;
inline MicroLibrary *microLibrary();
@@ -35,14 +35,14 @@ class MicroLibrary
~MicroLibrary();
- MicroInfo * const microInfoWithID( QString id );
+ MicroInfo * const microInfoWithID( TQString id );
void addMicroInfo( MicroInfo *microInfo );
/**
* Returns a list of micro ids with the given properties (OR'ed
* together).
*/
- QStringList microIDs( unsigned asmSet = AsmInfo::AsmSetAll, unsigned gpsimSupport = MicroInfo::AllSupport, unsigned flowCodeSupport = MicroInfo::AllSupport, unsigned microbeSupport = MicroInfo::AllSupport );
+ TQStringList microIDs( unsigned asmSet = AsmInfo::AsmSetAll, unsigned gpsimSupport = MicroInfo::AllSupport, unsigned flowCodeSupport = MicroInfo::AllSupport, unsigned microbeSupport = MicroInfo::AllSupport );
private:
MicroLibrary();