summaryrefslogtreecommitdiffstats
path: root/noatun/modules
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2025-01-20 17:21:38 +0900
committerMichele Calgaro <[email protected]>2025-02-03 21:39:44 +0900
commit52fb3a0dd7d190b83257b86738b313a02868d133 (patch)
treead5e6f9e72e0ea0820861a05c185e11ae39edcf3 /noatun/modules
parent4767a3730d12a9e9f2d428d46da80467d73e5015 (diff)
downloadtdemultimedia-52fb3a0dd7d190b83257b86738b313a02868d133.tar.gz
tdemultimedia-52fb3a0dd7d190b83257b86738b313a02868d133.zip
Use tdeApp
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'noatun/modules')
-rw-r--r--noatun/modules/dcopiface/dcopiface.cpp4
-rw-r--r--noatun/modules/infrared/irprefs.cpp4
-rw-r--r--noatun/modules/kaiman/userinterface.cpp2
-rw-r--r--noatun/modules/keyz/keyz.cpp2
-rw-r--r--noatun/modules/kjofol-skin/kjloader.cpp2
5 files changed, 7 insertions, 7 deletions
diff --git a/noatun/modules/dcopiface/dcopiface.cpp b/noatun/modules/dcopiface/dcopiface.cpp
index 4c9e0f37..0a146f94 100644
--- a/noatun/modules/dcopiface/dcopiface.cpp
+++ b/noatun/modules/dcopiface/dcopiface.cpp
@@ -24,7 +24,7 @@ NIF::NIF() : Plugin(), DCOPObject("Noatun")
NIF::~NIF()
{
- kapp->dcopClient()->emitDCOPSignal("exiting()", TQByteArray());
+ tdeApp->dcopClient()->emitDCOPSignal("exiting()", TQByteArray());
}
void NIF::toggleListView()
@@ -241,7 +241,7 @@ TQCString NIF::version()
void NIF::newSongPlaying()
{
- kapp->dcopClient()->emitDCOPSignal("newFile()", TQByteArray());
+ tdeApp->dcopClient()->emitDCOPSignal("newFile()", TQByteArray());
}
void NIF::clear()
diff --git a/noatun/modules/infrared/irprefs.cpp b/noatun/modules/infrared/irprefs.cpp
index 50df64cd..829f51aa 100644
--- a/noatun/modules/infrared/irprefs.cpp
+++ b/noatun/modules/infrared/irprefs.cpp
@@ -103,7 +103,7 @@ IRPrefs::IRPrefs(TQObject *parent)
void IRPrefs::save()
{
- TDEConfig *c = kapp->config();
+ TDEConfig *c = tdeApp->config();
TDEConfigGroupSaver groupSaver(c, "Infrared");
c->writeEntry("CommandCount", s_commands.count());
int i = 1;
@@ -282,7 +282,7 @@ void IRPrefs::readConfig()
{
if (s_configRead)
return;
- TDEConfig *c = kapp->config();
+ TDEConfig *c = tdeApp->config();
TDEConfigGroupSaver groupSaver(c, "Infrared");
int count = c->readNumEntry("CommandCount");
for (int i = 1; i <= count; ++i)
diff --git a/noatun/modules/kaiman/userinterface.cpp b/noatun/modules/kaiman/userinterface.cpp
index bed68ec6..a1eea028 100644
--- a/noatun/modules/kaiman/userinterface.cpp
+++ b/noatun/modules/kaiman/userinterface.cpp
@@ -372,7 +372,7 @@ void Kaiman::volumeDown()
void Kaiman::execMixer()
{
- kapp->startServiceByDesktopName ( TQString::fromLatin1("kmix"), TQString() );
+ tdeApp->startServiceByDesktopName ( TQString::fromLatin1("kmix"), TQString() );
}
diff --git a/noatun/modules/keyz/keyz.cpp b/noatun/modules/keyz/keyz.cpp
index cda022a2..8eae1e8d 100644
--- a/noatun/modules/keyz/keyz.cpp
+++ b/noatun/modules/keyz/keyz.cpp
@@ -147,7 +147,7 @@ void Keyz::slotPrevSection()
void Keyz::slotCopyTitle()
{
if (napp->player()->current())
- TDEApplication::kApplication()->clipboard()->setText(napp->player()->current().title());
+ tdeApp->clipboard()->setText(napp->player()->current().title());
}
diff --git a/noatun/modules/kjofol-skin/kjloader.cpp b/noatun/modules/kjofol-skin/kjloader.cpp
index 293dca96..690361d6 100644
--- a/noatun/modules/kjofol-skin/kjloader.cpp
+++ b/noatun/modules/kjofol-skin/kjloader.cpp
@@ -146,7 +146,7 @@ KJLoader::KJLoader()
napp->preferences();
}
- mHelpMenu = new KHelpMenu(this, kapp->aboutData());
+ mHelpMenu = new KHelpMenu(this, tdeApp->aboutData());
connect(napp->player(), TQ_SIGNAL(timeout()), TQ_SLOT(timeUpdate()));
connect(napp->player(), TQ_SIGNAL(stopped()), TQ_SLOT(timeUpdate()));
connect(napp->player(), TQ_SIGNAL(newSong()), TQ_SLOT(newSong()));