summaryrefslogtreecommitdiffstats
path: root/lib/store/tests/xmlwritertest.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/store/tests/xmlwritertest.h')
-rw-r--r--lib/store/tests/xmlwritertest.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/store/tests/xmlwritertest.h b/lib/store/tests/xmlwritertest.h
index 12011c03..eb6c6e44 100644
--- a/lib/store/tests/xmlwritertest.h
+++ b/lib/store/tests/xmlwritertest.h
@@ -27,17 +27,17 @@
TQCString expectedFull( "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" ); \
expectedFull += expected; \
if ( cstr == expectedFull ) \
- qDebug( "%s OK", testname ); \
+ tqDebug( "%s OK", testname ); \
else { \
- qDebug( "%s FAILED!", testname ); \
+ tqDebug( "%s FAILED!", testname ); \
TQCString s1 = cstr; \
TQCString s2 = expectedFull; \
if ( s1.length() != s2.length() ) \
- qDebug( "got length %d, expected %d", s1.length(), s2.length() ); \
+ tqDebug( "got length %d, expected %d", s1.length(), s2.length() ); \
s1.replace( TQRegExp( TQString::fromLatin1( "[x]{1000}" ) ), "[x]*1000" ); \
s2.replace( TQRegExp( TQString::fromLatin1( "[x]{1000}" ) ), "[x]*1000" ); \
- qDebug( "%s", s1.data() ); \
- qDebug( "Expected:\n%s", s2.data() ); \
+ tqDebug( "%s", s1.data() ); \
+ tqDebug( "Expected:\n%s", s2.data() ); \
return 1; /*exit*/ \
} \
}