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/kmimetypetest.cpp | |
parent | 8fc8811ef6079a15decd33f1ea5d95dd718e4557 (diff) | |
download | tdelibs-4fb897b216c41c13f128c71bcc66f60e2dc601c4.tar.gz tdelibs-4fb897b216c41c13f128c71bcc66f60e2dc601c4.zip |
Rename additional global TQt functions
Diffstat (limited to 'kio/tests/kmimetypetest.cpp')
-rw-r--r-- | kio/tests/kmimetypetest.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kio/tests/kmimetypetest.cpp b/kio/tests/kmimetypetest.cpp index 1856e6036..5802a4084 100644 --- a/kio/tests/kmimetypetest.cpp +++ b/kio/tests/kmimetypetest.cpp @@ -29,9 +29,9 @@ static void checkIcon( const KURL& url, const TQString& expectedIcon ) { TQString icon = KMimeType::iconForURL( url ); if ( icon == expectedIcon ) - qDebug( "icon for %s is %s, OK", url.prettyURL().latin1(), icon.latin1() ); + tqDebug( "icon for %s is %s, OK", url.prettyURL().latin1(), icon.latin1() ); else { - qDebug( "ERROR: icon for %s is %s, expected %s!", url.prettyURL().latin1(), icon.latin1(), expectedIcon.latin1() ); + tqDebug( "ERROR: icon for %s is %s, expected %s!", url.prettyURL().latin1(), icon.latin1(), expectedIcon.latin1() ); exit(1); } } @@ -65,11 +65,11 @@ int main( int argc, char** argv ) TQString pdf; KMimeType::diagnoseFileName("foo.pdf", pdf); - qDebug("extension: '%s'", pdf.latin1()); + tqDebug("extension: '%s'", pdf.latin1()); assert(pdf == TQString("*.pdf")); TQString ps; KMimeType::diagnoseFileName("foo.ps", ps); - qDebug("extension: '%s'", ps.latin1()); + tqDebug("extension: '%s'", ps.latin1()); assert(ps == TQString("*.ps")); return 0; |