summaryrefslogtreecommitdiffstats
path: root/libemailfunctions
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-01 13:35:40 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-01 13:35:40 -0600
commit17e2ed52dbf8fac39a04331da02b9572e9e2e304 (patch)
treecd0d57c975a55e05aac71794b363748f24625875 /libemailfunctions
parenta684ecdeceae222d5aa930478b7bf59a3b7cae7f (diff)
downloadtdepim-17e2ed52dbf8fac39a04331da02b9572e9e2e304.tar.gz
tdepim-17e2ed52dbf8fac39a04331da02b9572e9e2e304.zip
Rename additional global TQt functions
Diffstat (limited to 'libemailfunctions')
-rw-r--r--libemailfunctions/tests/testidmapper.cpp10
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;
}