summaryrefslogtreecommitdiffstats
path: root/kdgantt/KDGanttXMLTools.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kdgantt/KDGanttXMLTools.cpp')
-rw-r--r--kdgantt/KDGanttXMLTools.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/kdgantt/KDGanttXMLTools.cpp b/kdgantt/KDGanttXMLTools.cpp
index 5f2909c0..ea9006cd 100644
--- a/kdgantt/KDGanttXMLTools.cpp
+++ b/kdgantt/KDGanttXMLTools.cpp
@@ -415,7 +415,7 @@ bool readBrushNode( const TQDomElement& element, TQBrush& brush )
} else if( tagName == "Pixmap" ) {
ok = ok & readPixmapNode( element, tempPixmap );
} else {
- qDebug( "Unknown tag in brush" );
+ tqDebug( "Unknown tag in brush" );
}
}
node = node.nextSibling();
@@ -447,14 +447,14 @@ bool readPixmapNode( const TQDomElement& element, TQPixmap& pixmap )
ok = ok & readStringNode( element, formatName );
#ifndef NDEBUG
if( formatName != "XPM.GZ" )
- qDebug( "Unsupported pixmap format in XML file" );
+ tqDebug( "Unsupported pixmap format in XML file" );
#endif
} else if( tagName == "Length" ) {
ok = ok & readIntNode( element, tempLengthi );
} else if( tagName == "Data" ) {
ok = ok & readStringNode( element, tempData );
} else {
- qDebug( "Unknown tag in Pixmap" );
+ tqDebug( "Unknown tag in Pixmap" );
}
}
node = node.nextSibling();
@@ -521,7 +521,7 @@ bool readPenNode( const TQDomElement& element, TQPen& pen )
ok = ok & readStringNode( element, value );
tempStyle = stringToPenStyle( value );
} else {
- qDebug( "Unknown tag in brush" );
+ tqDebug( "Unknown tag in brush" );
}
}
node = node.nextSibling();
@@ -561,7 +561,7 @@ bool readFontNode( const TQDomElement& element, TQFont& font )
} else if( tagName == "CharSet" ) {
ok = ok & readIntNode( element, charSet );
} else {
- qDebug( "Unknown tag in color map" );
+ tqDebug( "Unknown tag in color map" );
}
}
node = node.nextSibling();
@@ -596,7 +596,7 @@ bool readRectNode( const TQDomElement& element, TQRect& value )
} else if( tagName == "Y" ) {
ok = ok & readIntNode( element, y );
} else {
- qDebug( "Unknown tag in rect" );
+ tqDebug( "Unknown tag in rect" );
}
}
node = node.nextSibling();
@@ -629,7 +629,7 @@ bool readDateTimeNode( const TQDomElement& element, TQDateTime& datetime )
} else if( tagName == "Time" ) {
ok = ok & readTimeNode( element, tempTime );
} else {
- qDebug( "Unknown tag in datetime" );
+ tqDebug( "Unknown tag in datetime" );
}
}
node = node.nextSibling();