summaryrefslogtreecommitdiffstats
path: root/kode/kwsdl/compiler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kode/kwsdl/compiler.cpp')
-rw-r--r--kode/kwsdl/compiler.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kode/kwsdl/compiler.cpp b/kode/kwsdl/compiler.cpp
index e3ccf4f8..8811c7e4 100644
--- a/kode/kwsdl/compiler.cpp
+++ b/kode/kwsdl/compiler.cpp
@@ -70,7 +70,7 @@ void Compiler::download()
if ( provider.get( mWSDLUrl, fileName ) ) {
TQFile file( fileName );
if ( !file.open( IO_ReadOnly ) ) {
- qDebug( "Unable to download schema file %s", mWSDLUrl.latin1() );
+ tqDebug( "Unable to download schema file %s", mWSDLUrl.latin1() );
provider.cleanUp();
return;
}
@@ -79,7 +79,7 @@ void Compiler::download()
int errorLine, errorCol;
TQDomDocument doc;
if ( !doc.setContent( &file, true, &errorMsg, &errorLine, &errorCol ) ) {
- qDebug( "%s at (%d,%d)", errorMsg.latin1(), errorLine, errorCol );
+ tqDebug( "%s at (%d,%d)", errorMsg.latin1(), errorLine, errorCol );
return;
}