Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
pull/9/head
Michele Calgaro 4 months ago
parent df74cc9f04
commit 150eee4193
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -36,10 +36,10 @@ Locater::Locater(TQObject *parent, const char *name)
{
kdDebug(7134) << "Locater::Locater" << endl;
connect(&m_process, TQT_SIGNAL(processExited(TDEProcess*)),
this, TQT_SLOT(finished(TDEProcess*)));
connect(&m_process, TQT_SIGNAL(readReady(KProcIO*)),
this, TQT_SLOT(gotOutput(KProcIO*)));
connect(&m_process, TQ_SIGNAL(processExited(TDEProcess*)),
this, TQ_SLOT(finished(TDEProcess*)));
connect(&m_process, TQ_SIGNAL(readReady(KProcIO*)),
this, TQ_SLOT(gotOutput(KProcIO*)));
setupLocate();
}

@ -268,10 +268,10 @@ LocateProtocol::LocateProtocol(const TQCString &pool_socket, const TQCString &ap
{
kdDebug(7134) << "LocateProtocol::LocateProtocol()" << endl;
connect(&m_locater, TQT_SIGNAL(found(const TQStringList&)),
this, TQT_SLOT(processLocateOutput(const TQStringList&)));
connect(&m_locater, TQT_SIGNAL(finished()),
this, TQT_SLOT(locateFinished()));
connect(&m_locater, TQ_SIGNAL(found(const TQStringList&)),
this, TQ_SLOT(processLocateOutput(const TQStringList&)));
connect(&m_locater, TQ_SIGNAL(finished()),
this, TQ_SLOT(locateFinished()));
m_baseDir = NULL;
m_curDir = NULL;
@ -779,8 +779,8 @@ void LocateProtocol::configRequest()
dialog->addPage(new KLocateConfigLocateWidget(), i18n("Locate"), "edit-find");
// React on user's actions.
connect(dialog, TQT_SIGNAL(settingsChanged()), this, TQT_SLOT(updateConfig()));
connect(dialog, TQT_SIGNAL(finished()), this, TQT_SLOT(configFinished()));
connect(dialog, TQ_SIGNAL(settingsChanged()), this, TQ_SLOT(updateConfig()));
connect(dialog, TQ_SIGNAL(finished()), this, TQ_SLOT(configFinished()));
dialog->show();
tqApp->enter_loop();

Loading…
Cancel
Save