summaryrefslogtreecommitdiffstats
path: root/src/fpnode.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/fpnode.h')
-rw-r--r--src/fpnode.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/fpnode.h b/src/fpnode.h
index 43d1834..2082a40 100644
--- a/src/fpnode.h
+++ b/src/fpnode.h
@@ -15,7 +15,7 @@
class FlowPart;
-typedef QValueList<FlowPart*> FlowPartList;
+typedef TQValueList<FlowPart*> FlowPartList;
/**
You should use this node for all FlowParts. It ensures that connections between FlowParts are
@@ -26,8 +26,9 @@ always valid (eg not more than two outputs from one node, which makes no sense)
class FPNode : public Node
{
Q_OBJECT
+ TQ_OBJECT
public:
- FPNode( ICNDocument *_icnView, Node::node_type type, node_dir dir, const QPoint &pos, QString *id = 0L );
+ FPNode( ICNDocument *_icnView, Node::node_type type, node_dir dir, const TQPoint &pos, TQString *id = 0L );
~FPNode();
/**
@@ -43,7 +44,7 @@ public:
FlowPartList inputFlowParts() const;
protected:
- virtual void drawShape( QPainter & p );
+ virtual void drawShape( TQPainter & p );
private:
bool m_isInput;