diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-01 13:33:40 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-01 13:33:40 -0600 |
commit | 4fb897b216c41c13f128c71bcc66f60e2dc601c4 (patch) | |
tree | 2891b54cd6ec39db133da0110028ec93fc006751 /kio/tests/ksycocatest.cpp | |
parent | 8fc8811ef6079a15decd33f1ea5d95dd718e4557 (diff) | |
download | tdelibs-4fb897b216c41c13f128c71bcc66f60e2dc601c4.tar.gz tdelibs-4fb897b216c41c13f128c71bcc66f60e2dc601c4.zip |
Rename additional global TQt functions
Diffstat (limited to 'kio/tests/ksycocatest.cpp')
-rw-r--r-- | kio/tests/ksycocatest.cpp | 12 |
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"); |