summaryrefslogtreecommitdiffstats
path: root/src/apt.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-06 12:15:07 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-06 12:15:07 +0900
commiteeecdda1a3987158b7a9c3016c63dbc72347fe90 (patch)
tree05e09011a90d81e61e4f9ac3908c79d6c65e53a6 /src/apt.cpp
parentf806cb63353c33a0e4b732ded85afe8ae14e40ce (diff)
downloadtdeio-apt-eeecdda1a3987158b7a9c3016c63dbc72347fe90.tar.gz
tdeio-apt-eeecdda1a3987158b7a9c3016c63dbc72347fe90.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/apt.cpp')
-rw-r--r--src/apt.cpp8
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&)));
}
}