summaryrefslogtreecommitdiffstats
path: root/kio/tests/ksycocatest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kio/tests/ksycocatest.cpp')
-rw-r--r--kio/tests/ksycocatest.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/kio/tests/ksycocatest.cpp b/kio/tests/ksycocatest.cpp
index 436ae7639..086836f37 100644
--- a/kio/tests/ksycocatest.cpp
+++ b/kio/tests/ksycocatest.cpp
@@ -71,19 +71,19 @@ int main(int argc, char *argv[])
TQCString instname = "kword";
TQString desktopPath = TQString::fromLatin1( "Office/%1.desktop" ).arg( instname );
- qDebug( "Looking for %s", desktopPath.latin1() );
+ tqDebug( "Looking for %s", desktopPath.latin1() );
KService::Ptr service = KService::serviceByDesktopPath( desktopPath );
if ( service )
- qDebug( "found: %s", service->desktopEntryPath().latin1() );
+ tqDebug( "found: %s", service->desktopEntryPath().latin1() );
else
- qDebug( "not found" );
+ tqDebug( "not found" );
- qDebug( "Looking for desktop name = %s", instname.data() );
+ tqDebug( "Looking for desktop name = %s", instname.data() );
service = KService::serviceByDesktopName( instname );
if ( service )
- qDebug( "found: %s", service->desktopEntryPath().latin1() );
+ tqDebug( "found: %s", service->desktopEntryPath().latin1() );
else
- qDebug( "not found" );
+ tqDebug( "not found" );
debug("Trying to look for text/plain");
KMimeType::Ptr s1 = KMimeType::mimeType("text/plain");