diff --git a/src/locater.cpp b/src/locater.cpp index b74dfd8..d6764d0 100644 --- a/src/locater.cpp +++ b/src/locater.cpp @@ -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(); } diff --git a/src/tdeio_locate.cpp b/src/tdeio_locate.cpp index 09f2395..fd5db89 100644 --- a/src/tdeio_locate.cpp +++ b/src/tdeio_locate.cpp @@ -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();