Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
pull/7/head
Michele Calgaro 4 months ago
parent 265bf6a7e4
commit 3c9cb4f33b
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -72,7 +72,7 @@ void EffectWidget::start()
if (!timer)
{
timer = new TQTimer(this);
connect(timer,TQT_SIGNAL(timeout()),this,TQT_SLOT(timerTick()));
connect(timer,TQ_SIGNAL(timeout()),this,TQ_SLOT(timerTick()));
}
playing = true;

@ -67,8 +67,8 @@ void MagicLabel::getCommandOutput()
for (int i = 0; i < parts.count(); i++)
*proc << parts[i];
connect(proc, TQT_SIGNAL(processExited(TDEProcess*)), this, TQT_SLOT(processExited(TDEProcess*)));
connect(proc, TQT_SIGNAL(receivedStdout(TDEProcess*, char*, int)), this, TQT_SLOT(receivedStdout(TDEProcess*, char*, int)));
connect(proc, TQ_SIGNAL(processExited(TDEProcess*)), this, TQ_SLOT(processExited(TDEProcess*)));
connect(proc, TQ_SIGNAL(receivedStdout(TDEProcess*, char*, int)), this, TQ_SLOT(receivedStdout(TDEProcess*, char*, int)));
mValue = "";

Loading…
Cancel
Save