diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-29 16:35:31 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-29 16:35:31 +0900 |
| commit | 671d0469ada4df2d833d41d065793a06f4d87a65 (patch) | |
| tree | 08f73c8f83ba7b8bdad08cdec881878a332ab6bf /src/nodegroup.cpp | |
| parent | 15796910975130bce11a662cbe259913d791942f (diff) | |
| download | ktechlab-671d0469ada4df2d833d41d065793a06f4d87a65.tar.gz ktechlab-671d0469ada4df2d833d41d065793a06f4d87a65.zip | |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/nodegroup.cpp')
| -rw-r--r-- | src/nodegroup.cpp | 12 |
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*)) ); } } |
