summaryrefslogtreecommitdiffstats
path: root/knewsticker/common
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 /knewsticker/common
parent50da92376284f30d95e18960d2b24c49901fb10d (diff)
downloadtdenetwork-1517a05d2ffe7a33e1fe18a2dae540ae1c3d6694.tar.gz
tdenetwork-1517a05d2ffe7a33e1fe18a2dae540ae1c3d6694.zip
Use tdeApp
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'knewsticker/common')
-rw-r--r--knewsticker/common/newsiconmgr.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/knewsticker/common/newsiconmgr.cpp b/knewsticker/common/newsiconmgr.cpp
index 22525bc3..8f4334ea 100644
--- a/knewsticker/common/newsiconmgr.cpp
+++ b/knewsticker/common/newsiconmgr.cpp
@@ -82,7 +82,7 @@ void NewsIconMgr::getIcon(const KURL &url)
TQByteArray data;
TQDataStream ds(data, IO_WriteOnly);
ds << url;
- kapp->dcopClient()->send("kded", "favicons", "downloadHostIcon(KURL)", data);
+ tdeApp->dcopClient()->send("kded", "favicons", "downloadHostIcon(KURL)", data);
} else {
emit gotIcon(url, TQPixmap(TDEGlobal::dirs()->findResource("cache",
TQString::fromLatin1("favicons/%1.png").arg(url.host()))));
@@ -144,7 +144,7 @@ TQString NewsIconMgr::favicon(const KURL &url) const
ds << url;
- kapp->dcopClient()->call("kded", "favicons", "iconForURL(KURL)", data, replyType, reply);
+ tdeApp->dcopClient()->call("kded", "favicons", "iconForURL(KURL)", data, replyType, reply);
if (replyType == "TQString") {
TQDataStream replyStream(reply, IO_ReadOnly);