summaryrefslogtreecommitdiffstats
path: root/arts/builder/autorouter.h
diff options
context:
space:
mode:
Diffstat (limited to 'arts/builder/autorouter.h')
-rw-r--r--arts/builder/autorouter.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/arts/builder/autorouter.h b/arts/builder/autorouter.h
index e65f531a..cd422c4f 100644
--- a/arts/builder/autorouter.h
+++ b/arts/builder/autorouter.h
@@ -33,19 +33,19 @@
#include <pthread.h>
#endif
-#include <qptrlist.h>
-#include <qvaluelist.h>
+#include <tqptrlist.h>
+#include <tqvaluelist.h>
class PathInfo
{
public:
int x1, x2, y1, y2, cost, depth;
- QString history;
+ TQString history;
int operator<(const PathInfo& x) const { return cost < x.cost; }
int operator==(const PathInfo& x) const { return cost == x.cost; }
};
-typedef QValueList<PathInfo> PathQueue;
+typedef TQValueList<PathInfo> PathQueue;
class ARCommand;
@@ -96,7 +96,7 @@ protected:
pthread_t route_thread;
#endif
- QPtrList<ARCommand> command_queue;
+ TQPtrList<ARCommand> command_queue;
bool thread_terminate_now;
/*************************/