summaryrefslogtreecommitdiffstats
path: root/kode/kwsdl/wscl/parser.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kode/kwsdl/wscl/parser.cpp')
-rw-r--r--kode/kwsdl/wscl/parser.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/kode/kwsdl/wscl/parser.cpp b/kode/kwsdl/wscl/parser.cpp
index a21d05fe..2294d9d7 100644
--- a/kode/kwsdl/wscl/parser.cpp
+++ b/kode/kwsdl/wscl/parser.cpp
@@ -40,13 +40,13 @@ void Parser::parse( const TQString &xml )
int errorLine, errorColumn;
bool ok = doc.setContent( xml, true, &errorMsg, &errorLine, &errorColumn );
if ( !ok ) {
- qDebug( "Error parsing wscl (%d:%d) %s", errorLine, errorColumn, errorMsg.latin1() );
+ tqDebug( "Error parsing wscl (%d:%d) %s", errorLine, errorColumn, errorMsg.latin1() );
return;
}
TQDomNodeList nodes = doc.elementsByTagName( "Conversation" );
if ( nodes.count() <= 0 ) {
- qDebug( "No conversation tag found in wscl data" );
+ tqDebug( "No conversation tag found in wscl data" );
return;
}
@@ -72,7 +72,7 @@ void Parser::parse( const TQString &xml )
TQDomElement interactionElement = interactionNode.toElement();
if ( !interactionElement.isNull() ) {
if ( interactionElement.tagName() != "Interaction" ) {
- qDebug( "Expected tag name 'Interaction', got '%s'", interactionElement.tagName().latin1() );
+ tqDebug( "Expected tag name 'Interaction', got '%s'", interactionElement.tagName().latin1() );
continue;
}
@@ -90,7 +90,7 @@ void Parser::parse( const TQString &xml )
else if ( type == "Empty" )
interaction.setType( Interaction::Empty );
else
- qDebug( "Unknown interaction type '%s'", type.latin1() );
+ tqDebug( "Unknown interaction type '%s'", type.latin1() );
XMLDocument::List inputDocuments;
XMLDocument::List outputDocuments;
@@ -175,7 +175,7 @@ void Parser::parse( const TQString &xml )
TQDomElement transitionElement = transitionNode.toElement();
if ( !transitionElement.isNull() ) {
if ( transitionElement.tagName() != "Transition" ) {
- qDebug( "Expected tag name 'Transition', got '%s'", transitionElement.tagName().latin1() );
+ tqDebug( "Expected tag name 'Transition', got '%s'", transitionElement.tagName().latin1() );
continue;
}
@@ -193,7 +193,7 @@ void Parser::parse( const TQString &xml )
else if ( tagName == "SourceInteractionCondition" )
transition.setSourceInteractionCondition( contentElement.attribute( "href" ) );
else
- qDebug( "Unknown transition element %s", tagName.latin1() );
+ tqDebug( "Unknown transition element %s", tagName.latin1() );
}
contentNode = contentNode.nextSibling();