summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-01 13:18:44 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-01 13:18:44 -0600
commit6cb95001cbbe3e5b6a0ffc3cbcf20589b355bf98 (patch)
tree87a04c54cd85e706bc3b7d946ab62c269e78d77a
parent5a41362dd8942ce155d01877f9277f4008e5989f (diff)
downloadkatapult-6cb95001cbbe3e5b6a0ffc3cbcf20589b355bf98.tar.gz
katapult-6cb95001cbbe3e5b6a0ffc3cbcf20589b355bf98.zip
Rename additional global TQt functions
-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());
}
}