Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit fb09ca8050)
r14.1.x
Michele Calgaro 9 months ago
parent b630d6e2f3
commit 921d46a456
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -77,7 +77,7 @@ console::console(TQWidget *parent, const TQStrList &run, const char *name, const
// run command // run command
terminal()->startProgram( m_kdePrefix + "/share/kdpkg/sh/kdpkg-sh", run ); terminal()->startProgram( m_kdePrefix + "/share/kdpkg/sh/kdpkg-sh", run );
connect( konsole, TQT_SIGNAL(destroyed()), this, TQT_SLOT( finish() ) ); connect( konsole, TQ_SIGNAL(destroyed()), this, TQ_SLOT( finish() ) );
} }

@ -174,7 +174,7 @@ void install::page3()
widgetStack->addWidget(consoleWidget, 4); widgetStack->addWidget(consoleWidget, 4);
widgetStack->raiseWidget(4); widgetStack->raiseWidget(4);
connect( consoleWidget, TQT_SIGNAL( finished(bool) ), this, TQT_SLOT( page1() )); connect( consoleWidget, TQ_SIGNAL( finished(bool) ), this, TQ_SLOT( page1() ));
} }
@ -200,8 +200,8 @@ void install::page4()
widgetStack->addWidget(consoleWidget, 5); widgetStack->addWidget(consoleWidget, 5);
widgetStack->raiseWidget(5); widgetStack->raiseWidget(5);
//connect( consoleWidget, TQT_SIGNAL( finished(bool) ), this, TQT_SLOT( close() )); //connect( consoleWidget, TQ_SIGNAL( finished(bool) ), this, TQ_SLOT( close() ));
connect( consoleWidget, TQT_SIGNAL( finished(bool) ), this, TQT_SLOT( page5() )); connect( consoleWidget, TQ_SIGNAL( finished(bool) ), this, TQ_SLOT( page5() ));
} }

@ -8,8 +8,8 @@
_buffer = TQString(); _buffer = TQString();
_process = new TDEProcess(); _process = new TDEProcess();
connect(_process, TQT_SIGNAL(receivedStdout(TDEProcess*, char*, int)), connect(_process, TQ_SIGNAL(receivedStdout(TDEProcess*, char*, int)),
this, TQT_SLOT(slotProcessOutput(TDEProcess*, char*, int))); this, TQ_SLOT(slotProcessOutput(TDEProcess*, char*, int)));
} }

@ -8,8 +8,8 @@
_buffer = TQString(); _buffer = TQString();
_process = new TDEProcess(); _process = new TDEProcess();
connect(_process, TQT_SIGNAL(receivedStdout(TDEProcess*, char*, int)), connect(_process, TQ_SIGNAL(receivedStdout(TDEProcess*, char*, int)),
this, TQT_SLOT(slotProcessOutput(TDEProcess*, char*, int))); this, TQ_SLOT(slotProcessOutput(TDEProcess*, char*, int)));
} }

Loading…
Cancel
Save