diff options
Diffstat (limited to 'src/apt.cpp')
-rw-r--r-- | src/apt.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/apt.cpp b/src/apt.cpp index b237a75..f81fbbe 100644 --- a/src/apt.cpp +++ b/src/apt.cpp @@ -236,15 +236,15 @@ AptProtocol::AptProtocol( const TQCString &pool_socket, const TQCString &app_soc m_logo_alt = TDEGlobal::config() -> readEntryUntranslated("alt_tag", i18n("KDE on Debian") ); - connect(&m_process, TQT_SIGNAL(token(const TQString&, const TQString&)), - this, TQT_SLOT(token_dispatch(const TQString&, const TQString&))); + connect(&m_process, TQ_SIGNAL(token(const TQString&, const TQString&)), + this, TQ_SLOT(token_dispatch(const TQString&, const TQString&))); m_adept_batch = new Dpkg(this); if (m_adept_batch) { - connect(m_adept_batch, TQT_SIGNAL(token(const TQString&, const TQString&)), - this, TQT_SLOT(token_dispatch(const TQString&, const TQString&))); + connect(m_adept_batch, TQ_SIGNAL(token(const TQString&, const TQString&)), + this, TQ_SLOT(token_dispatch(const TQString&, const TQString&))); } } |