summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/irc
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2025-01-20 17:31:48 +0900
committerMichele Calgaro <[email protected]>2025-01-20 17:31:48 +0900
commit1517a05d2ffe7a33e1fe18a2dae540ae1c3d6694 (patch)
treee6967aa8aacf5e5fca64c6b69f3a0ddc528a5640 /kopete/protocols/irc
parent50da92376284f30d95e18960d2b24c49901fb10d (diff)
downloadtdenetwork-1517a05d2ffe7a33e1fe18a2dae540ae1c3d6694.tar.gz
tdenetwork-1517a05d2ffe7a33e1fe18a2dae540ae1c3d6694.zip
Use tdeApp
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'kopete/protocols/irc')
-rw-r--r--kopete/protocols/irc/ircaccount.cpp6
-rw-r--r--kopete/protocols/irc/libkirc/ksslsocket.cpp2
2 files changed, 4 insertions, 4 deletions
diff --git a/kopete/protocols/irc/ircaccount.cpp b/kopete/protocols/irc/ircaccount.cpp
index 5175865a..f3a10f60 100644
--- a/kopete/protocols/irc/ircaccount.cpp
+++ b/kopete/protocols/irc/ircaccount.cpp
@@ -79,7 +79,7 @@ IRCAccount::IRCAccount(IRCProtocol *protocol, const TQString &accountId, const T
for( TQMap< TQString, TQString >::ConstIterator it = replies.begin(); it != replies.end(); ++it )
m_engine->addCustomCtcp( it.key(), it.data() );
- TQString version=i18n("Kopete IRC Plugin %1 [http://trinitydesktop.org]").arg(kapp->aboutData()->version());
+ TQString version=i18n("Kopete IRC Plugin %1 [http://trinitydesktop.org]").arg(tdeApp->aboutData()->version());
m_engine->setVersionString( version );
TQObject::connect(m_engine, TQ_SIGNAL(successfullyChangedNick(const TQString &, const TQString &)),
@@ -352,7 +352,7 @@ const TQString IRCAccount::defaultPart() const
{
TQString partMsg = configGroup()->readEntry(TQString::fromLatin1("defaultPart"));
if( partMsg.isEmpty() )
- return TQString::fromLatin1("Kopete %1 : http://trinitydesktop.org").arg( kapp->aboutData()->version() );
+ return TQString::fromLatin1("Kopete %1 : http://trinitydesktop.org").arg( tdeApp->aboutData()->version() );
return partMsg;
}
@@ -360,7 +360,7 @@ const TQString IRCAccount::defaultQuit() const
{
TQString quitMsg = configGroup()->readEntry(TQString::fromLatin1("defaultQuit"));
if( quitMsg.isEmpty() )
- return TQString::fromLatin1("Kopete %1 : http://trinitydesktop.org").arg(kapp->aboutData()->version());
+ return TQString::fromLatin1("Kopete %1 : http://trinitydesktop.org").arg(tdeApp->aboutData()->version());
return quitMsg;
}
diff --git a/kopete/protocols/irc/libkirc/ksslsocket.cpp b/kopete/protocols/irc/libkirc/ksslsocket.cpp
index 82440bbb..27e64b40 100644
--- a/kopete/protocols/irc/libkirc/ksslsocket.cpp
+++ b/kopete/protocols/irc/libkirc/ksslsocket.cpp
@@ -44,7 +44,7 @@ KSSLSocket::KSSLSocket() : KExtendedSocket()
{
d = new KSSLSocketPrivate;
d->kssl = 0;
- d->dcc = TDEApplication::kApplication()->dcopClient();
+ d->dcc = tdeApp->dcopClient();
d->cc = new KSSLCertificateCache;
d->cc->reload();