summaryrefslogtreecommitdiffstats
path: root/src/nodegroup.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-12-29 16:35:31 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-12-31 22:21:10 +0900
commit4bff0b57c61dcee5074d6dc0c02d7f61eeb7202d (patch)
tree08f73c8f83ba7b8bdad08cdec881878a332ab6bf /src/nodegroup.cpp
parenta082a2596013ce2dc791319f70d0371004a406a5 (diff)
downloadktechlab-4bff0b57.tar.gz
ktechlab-4bff0b57.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 671d0469ada4df2d833d41d065793a06f4d87a65)
Diffstat (limited to 'src/nodegroup.cpp')
-rw-r--r--src/nodegroup.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/nodegroup.cpp b/src/nodegroup.cpp
index aaea114..3b23e23 100644
--- a/src/nodegroup.cpp
+++ b/src/nodegroup.cpp
@@ -480,7 +480,7 @@ void NodeGroup::clearConList()
if (con)
{
con->setNodeGroup(0l);
- disconnect( con, TQT_SIGNAL(removed(Connector*)), this, TQT_SLOT(connectorRemoved(Connector*)) );
+ disconnect( con, TQ_SIGNAL(removed(Connector*)), this, TQ_SLOT(connectorRemoved(Connector*)) );
}
}
m_conList.clear();
@@ -515,7 +515,7 @@ void NodeGroup::init()
m_conList += con;
con->setNodeGroup(this);
}
- connect( con, TQT_SIGNAL(removed(Connector*)), this, TQT_SLOT(connectorRemoved(Connector*)) );
+ connect( con, TQ_SIGNAL(removed(Connector*)), this, TQ_SLOT(connectorRemoved(Connector*)) );
}
conEnd = outCon.end();
@@ -527,19 +527,19 @@ void NodeGroup::init()
m_conList += con;
con->setNodeGroup(this);
}
- connect( con, TQT_SIGNAL(removed(Connector*)), this, TQT_SLOT(connectorRemoved(Connector*)) );
+ connect( con, TQ_SIGNAL(removed(Connector*)), this, TQ_SLOT(connectorRemoved(Connector*)) );
}
// Connect the node up to us
- connect( *nodeIt, TQT_SIGNAL(removed(Node*)), this, TQT_SLOT(nodeRemoved(Node*)) );
+ connect( *nodeIt, TQ_SIGNAL(removed(Node*)), this, TQ_SLOT(nodeRemoved(Node*)) );
}
// And connect up our external nodes
xnEnd = m_extNodeList.end();
for ( NodeList::iterator it = m_extNodeList.begin(); it != xnEnd; ++it )
{
-// connect( *it, TQT_SIGNAL(moved(Node*)), this, TQT_SLOT(extNodeMoved()) );
- connect( *it, TQT_SIGNAL(removed(Node*)), this, TQT_SLOT(nodeRemoved(Node*)) );
+// connect( *it, TQ_SIGNAL(moved(Node*)), this, TQ_SLOT(extNodeMoved()) );
+ connect( *it, TQ_SIGNAL(removed(Node*)), this, TQ_SLOT(nodeRemoved(Node*)) );
}
}