diff options
Diffstat (limited to 'libemailfunctions/tests')
-rw-r--r-- | libemailfunctions/tests/testidmapper.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libemailfunctions/tests/testidmapper.cpp b/libemailfunctions/tests/testidmapper.cpp index 3abde7b5e..74ee92013 100644 --- a/libemailfunctions/tests/testidmapper.cpp +++ b/libemailfunctions/tests/testidmapper.cpp @@ -33,22 +33,22 @@ int main( int argc, char **argv ) mapper.setRemoteId( "yes", "klar" ); mapper.setRemoteId( "no", "nee" ); - qDebug( "full:\n%s", mapper.asString().latin1() ); + tqDebug( "full:\n%s", mapper.asString().latin1() ); mapper.save(); mapper.clear(); - qDebug( "empty:\n%s", mapper.asString().latin1() ); + tqDebug( "empty:\n%s", mapper.asString().latin1() ); mapper.load(); - qDebug( "full again:\n%s", mapper.asString().latin1() ); + tqDebug( "full again:\n%s", mapper.asString().latin1() ); mapper.save(); mapper.clear(); - qDebug( "empty:\n%s", mapper.asString().latin1() ); + tqDebug( "empty:\n%s", mapper.asString().latin1() ); mapper.load(); - qDebug( "full again:\n%s", mapper.asString().latin1() ); + tqDebug( "full again:\n%s", mapper.asString().latin1() ); return 0; } |