summaryrefslogtreecommitdiffstats
path: root/src/appimpl.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2022-05-18 14:57:35 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2022-05-18 14:57:35 +0900
commit596d7b2cdc5ff247b89a65ea7491e175da86da91 (patch)
treeac04ac160de3b9fbbf43315ab536fd78430ef5a0 /src/appimpl.cpp
parentb7aec448a1dbe0dc98e67a82a79755b3eeee307f (diff)
downloadtdeio-appinfo-596d7b2cdc5ff247b89a65ea7491e175da86da91.tar.gz
tdeio-appinfo-596d7b2cdc5ff247b89a65ea7491e175da86da91.zip
Use dedicated kdDebug area.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/appimpl.cpp')
-rw-r--r--src/appimpl.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/appimpl.cpp b/src/appimpl.cpp
index b9659aa..01e9593 100644
--- a/src/appimpl.cpp
+++ b/src/appimpl.cpp
@@ -40,7 +40,7 @@ AppImpl::AppImpl(TDEIO_AppInfo *slave) : TQObject(), m_slave(slave)
void AppImpl::listRoot()
{
- kdDebug() << "AppImpl::listRoot" << endl;
+ kdDebug(7129) << "AppImpl::listRoot" << endl;
// Top level entry
TDEIO::UDSEntry entry;
@@ -48,7 +48,7 @@ void AppImpl::listRoot()
m_slave->listEntry(entry, false);
TQStringList dirList = TQStringList::split(":", getenv("PATH"));
- kdDebug() << dirList << endl;
+ kdDebug(7129) << dirList << endl;
TQMap<TQString, bool> knownApps;
TQValueList<TDEIO::UDSEntry> list;
@@ -106,7 +106,7 @@ bool AppImpl::parseURL(const KURL &url, TQString &name, TQString &path) const
bool AppImpl::statByName(const TQString &filename, TDEIO::UDSEntry &entry)
{
- kdDebug() << "AppImpl::statByName" << endl;
+ kdDebug(7129) << "AppImpl::statByName" << endl;
TQStringList dirList = TQStringList::split(":", getenv("PATH"));
@@ -334,7 +334,7 @@ void AppImpl::createTDEConfigEntry(TQValueList<TDEIO::UDSEntry> &list, const TQS
// Resource file
TQString TDEDataDir = locate("config", shortname + "rc");
- kdDebug() << "TDEDataDir: " << TDEDataDir << endl;
+ kdDebug(7129) << "TDEDataDir: " << TDEDataDir << endl;
if (TDEDataDir.isEmpty())
{
return;
@@ -376,7 +376,7 @@ void AppImpl::createStandardConfigEntry(TQValueList<TDEIO::UDSEntry> &list, cons
isFolder = true;
}
- kdDebug() << "createStandardConfigEntry: " << fname << endl;
+ kdDebug(7129) << "createStandardConfigEntry: " << fname << endl;
entry.clear();
addAtom(entry, TDEIO::UDS_URL, 0, fname);
@@ -424,7 +424,7 @@ void AppImpl::createTmpDirEntry(TQValueList<TDEIO::UDSEntry> &list, const TQStri
isFolder = true;
}
- kdDebug() << "createTmpDirEntry: " << fname << endl;
+ kdDebug(7129) << "createTmpDirEntry: " << fname << endl;
TDEIO::UDSEntry entry;
addAtom(entry, TDEIO::UDS_URL, 0, fname);
@@ -467,7 +467,7 @@ void AppImpl::createXDGDirEntry(TQValueList<TDEIO::UDSEntry> &list, const TQStri
isFolder = true;
}
- kdDebug() << "createXdgDirEntry: " << filename << endl;
+ kdDebug(7129) << "createXdgDirEntry: " << filename << endl;
TDEIO::UDSEntry entry;
addAtom(entry, TDEIO::UDS_URL, 0, filename);
@@ -491,7 +491,7 @@ void AppImpl::createXDGDirEntry(TQValueList<TDEIO::UDSEntry> &list, const TQStri
bool AppImpl::listAppContents(const TQString &name, TQValueList<TDEIO::UDSEntry> &list)
{
- kdDebug() << "AppImpl::listAppContents" << endl;
+ kdDebug(7129) << "AppImpl::listAppContents" << endl;
// Create entry for binary file
createExeEntry(list, name, getAppAddress(name));