summaryrefslogtreecommitdiffstats
path: root/knewsticker
diff options
context:
space:
mode:
Diffstat (limited to 'knewsticker')
-rw-r--r--knewsticker/common/newsengine.cpp4
-rw-r--r--knewsticker/common/newsiconmgr.cpp6
-rw-r--r--knewsticker/knewsticker.cpp6
-rw-r--r--knewsticker/kntsrcfilepropsdlg/kntsrcfilepropsdlg.cpp4
-rw-r--r--knewsticker/newsscroller.cpp8
5 files changed, 14 insertions, 14 deletions
diff --git a/knewsticker/common/newsengine.cpp b/knewsticker/common/newsengine.cpp
index c5c44f04..4b3b5c62 100644
--- a/knewsticker/common/newsengine.cpp
+++ b/knewsticker/common/newsengine.cpp
@@ -17,9 +17,9 @@
#include <tdeapplication.h>
#include <kdebug.h>
#include <tdemessagebox.h>
-#include <kprocess.h>
+#include <tdeprocess.h>
#include <krun.h>
-#include <kstandarddirs.h>
+#include <tdestandarddirs.h>
#include <tqbuffer.h>
diff --git a/knewsticker/common/newsiconmgr.cpp b/knewsticker/common/newsiconmgr.cpp
index 22525bc3..83381ef4 100644
--- a/knewsticker/common/newsiconmgr.cpp
+++ b/knewsticker/common/newsiconmgr.cpp
@@ -14,7 +14,7 @@
#include <tdeapplication.h>
#include <kiconloader.h>
-#include <kstandarddirs.h>
+#include <tdestandarddirs.h>
#include <tqbuffer.h>
#include <tqfile.h>
@@ -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);
diff --git a/knewsticker/knewsticker.cpp b/knewsticker/knewsticker.cpp
index e33d8295..33368d21 100644
--- a/knewsticker/knewsticker.cpp
+++ b/knewsticker/knewsticker.cpp
@@ -22,9 +22,9 @@
#include <kdebug.h>
#include <kiconloader.h>
#include <knotifyclient.h>
-#include <kprocess.h>
+#include <tdeprocess.h>
#include <tdeprotocolmanager.h>
-#include <kstandarddirs.h>
+#include <tdestandarddirs.h>
#include <tdestartupinfo.h>
#include <tqcursor.h>
@@ -119,7 +119,7 @@ void KNewsTicker::about()
void KNewsTicker::help()
{
- kapp->invokeHelp(TQString(), TQString::fromLatin1("knewsticker"));
+ tdeApp->invokeHelp(TQString(), TQString::fromLatin1("knewsticker"));
}
void KNewsTicker::reportBug()
diff --git a/knewsticker/kntsrcfilepropsdlg/kntsrcfilepropsdlg.cpp b/knewsticker/kntsrcfilepropsdlg/kntsrcfilepropsdlg.cpp
index 4db586e3..90366c95 100644
--- a/knewsticker/kntsrcfilepropsdlg/kntsrcfilepropsdlg.cpp
+++ b/knewsticker/kntsrcfilepropsdlg/kntsrcfilepropsdlg.cpp
@@ -22,7 +22,7 @@
#include <tdelocale.h>
#include <kurl.h>
#include <kurllabel.h>
-#include <kstandarddirs.h>
+#include <tdestandarddirs.h>
#include <tdeglobal.h>
#include <tqmultilineedit.h>
@@ -90,7 +90,7 @@ void KntSrcFilePropsDlg::slotConstructUI(Loader *, Document doc, Status status)
void KntSrcFilePropsDlg::slotOpenURL(const TQString &url)
{
- kapp->invokeBrowser(url);
+ tdeApp->invokeBrowser(url);
}
void KntSrcFilePropsDlg::slotGotIcon(const KURL &, const TQPixmap &pixmap)
diff --git a/knewsticker/newsscroller.cpp b/knewsticker/newsscroller.cpp
index 5da27a1c..35b11406 100644
--- a/knewsticker/newsscroller.cpp
+++ b/knewsticker/newsscroller.cpp
@@ -16,7 +16,7 @@
#include <tqtimer.h>
#include <kcursor.h>
-#include <kstandarddirs.h>
+#include <tdestandarddirs.h>
#include <kurldrag.h>
#include <tdemessagebox.h>
@@ -136,8 +136,8 @@ NewsScroller::NewsScroller(TQWidget *parent, ConfigAccess *cfg, const char *name
m_mouseDrag(false),
m_totalStepping(0.0)
{
- if (!kapp->dcopClient()->isAttached())
- kapp->dcopClient()->attach();
+ if (!tdeApp->dcopClient()->isAttached())
+ tdeApp->dcopClient()->attach();
setFrameStyle(StyledPanel | Sunken);
@@ -202,7 +202,7 @@ void NewsScroller::dropEvent(TQDropEvent* event)
configFrontend.setNewsSources(newsSources);
TQByteArray data;
- kapp->dcopClient()->send("knewsticker", "KNewsTicker", "reparseConfig()", data);
+ tdeApp->dcopClient()->send("knewsticker", "KNewsTicker", "reparseConfig()", data);
}
}
}