From 596d7b2cdc5ff247b89a65ea7491e175da86da91 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Wed, 18 May 2022 14:57:35 +0900 Subject: Use dedicated kdDebug area. Signed-off-by: Michele Calgaro --- src/appimpl.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'src/appimpl.cpp') 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 knownApps; TQValueList 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 &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 &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 &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 &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 &list, const TQStri bool AppImpl::listAppContents(const TQString &name, TQValueList &list) { - kdDebug() << "AppImpl::listAppContents" << endl; + kdDebug(7129) << "AppImpl::listAppContents" << endl; // Create entry for binary file createExeEntry(list, name, getAppAddress(name)); -- cgit v1.2.3