summaryrefslogtreecommitdiffstats
path: root/lib/store/tests
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2012-03-01 13:21:06 -0600
committerTimothy Pearson <[email protected]>2012-03-01 13:21:06 -0600
commit7d18baa666593a494ceea480732a8540ba471fe5 (patch)
tree1c656ba0da61a3bfcf4c4de730e66322865844fe /lib/store/tests
parent951839808408bed4165fc025dbf00caf59ea319b (diff)
downloadkoffice-7d18baa666593a494ceea480732a8540ba471fe5.tar.gz
koffice-7d18baa666593a494ceea480732a8540ba471fe5.zip
Rename additional global TQt functions
Diffstat (limited to 'lib/store/tests')
-rw-r--r--lib/store/tests/storedroptest.cpp2
-rw-r--r--lib/store/tests/xmlwritertest.cpp2
-rw-r--r--lib/store/tests/xmlwritertest.h10
3 files changed, 7 insertions, 7 deletions
diff --git a/lib/store/tests/storedroptest.cpp b/lib/store/tests/storedroptest.cpp
index 7845a393..09e30826 100644
--- a/lib/store/tests/storedroptest.cpp
+++ b/lib/store/tests/storedroptest.cpp
@@ -64,7 +64,7 @@ void StoreDropTest::keyPressEvent( TQKeyEvent * e )
void StoreDropTest::paste()
{
- qDebug( "paste" );
+ tqDebug( "paste" );
TQMimeSource* m = TQApplication::clipboard()->data();
if ( !m )
return;
diff --git a/lib/store/tests/xmlwritertest.cpp b/lib/store/tests/xmlwritertest.cpp
index e4280cec..d4fc14f4 100644
--- a/lib/store/tests/xmlwritertest.cpp
+++ b/lib/store/tests/xmlwritertest.cpp
@@ -31,7 +31,7 @@ void speedTest()
writer.endDocument();
}
out.close();
- qDebug( "writing %i XML elements using KoXmlWriter: %i ms", numParagraphs, time.elapsed() );
+ tqDebug( "writing %i XML elements using KoXmlWriter: %i ms", numParagraphs, time.elapsed() );
}
int main( int argc, char** argv ) {
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*/ \
} \
}