summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--katapult/common/cachedcatalog.cpp2
-rw-r--r--katapult/plugins/catalogs/documentcatalog/actionopendocument.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/katapult/common/cachedcatalog.cpp b/katapult/common/cachedcatalog.cpp
index 07824a6..52fe02c 100644
--- a/katapult/common/cachedcatalog.cpp
+++ b/katapult/common/cachedcatalog.cpp
@@ -168,7 +168,7 @@ const KatapultItem * CachedCatalog::findExact(TQString text) const
void CachedCatalog::addItem(KatapultItem *item)
{
if(findExact(item->text())) {
- qDebug("Ignored duplicate item: %s", item->text().ascii());
+ tqDebug("Ignored duplicate item: %s", item->text().ascii());
delete item;
} else
cache.append(item);
diff --git a/katapult/plugins/catalogs/documentcatalog/actionopendocument.cpp b/katapult/plugins/catalogs/documentcatalog/actionopendocument.cpp
index 06c71da..dcbb9a5 100644
--- a/katapult/plugins/catalogs/documentcatalog/actionopendocument.cpp
+++ b/katapult/plugins/catalogs/documentcatalog/actionopendocument.cpp
@@ -51,7 +51,7 @@ void ActionOpenDocument::execute(const KatapultItem* item) const
{
if(strcmp(item->className(), "Document") == 0 || strcmp(item->className(), "Directory") == 0) {
const Document *document = (const Document *) item;
- qDebug("%s", TQString("Running: %1").arg(document->path()).latin1());
+ tqDebug("%s", TQString("Running: %1").arg(document->path()).latin1());
new KRun(document->path());
}
}