diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-01 13:35:40 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-01 13:35:40 -0600 |
commit | 17e2ed52dbf8fac39a04331da02b9572e9e2e304 (patch) | |
tree | cd0d57c975a55e05aac71794b363748f24625875 /libkmime/tests | |
parent | a684ecdeceae222d5aa930478b7bf59a3b7cae7f (diff) | |
download | tdepim-17e2ed52dbf8fac39a04331da02b9572e9e2e304.tar.gz tdepim-17e2ed52dbf8fac39a04331da02b9572e9e2e304.zip |
Rename additional global TQt functions
Diffstat (limited to 'libkmime/tests')
-rw-r--r-- | libkmime/tests/test_kmime_codec.cpp | 6 | ||||
-rw-r--r-- | libkmime/tests/test_kmime_header_parsing.cpp | 2 | ||||
-rw-r--r-- | libkmime/tests/test_mdn.cpp | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/libkmime/tests/test_kmime_codec.cpp b/libkmime/tests/test_kmime_codec.cpp index 832ea2c3c..7417c8aea 100644 --- a/libkmime/tests/test_kmime_codec.cpp +++ b/libkmime/tests/test_kmime_codec.cpp @@ -138,11 +138,11 @@ int main( int argc, char * argv[] ) { verbose = true; break; case 9: // usage-pattern - if ( !qstricmp( "kio", optarg ) ) + if ( !tqstricmp( "kio", optarg ) ) pattern = Kio; - else if ( !qstricmp( "chunkwise", optarg ) ) + else if ( !tqstricmp( "chunkwise", optarg ) ) pattern = ChunkWise; - else if ( !qstricmp( "convenience-qba", optarg ) ) + else if ( !tqstricmp( "convenience-qba", optarg ) ) pattern = ConvenienceTQBA; else { cerr << "Unknown usage pattern \"" << optarg << "\"" << endl; diff --git a/libkmime/tests/test_kmime_header_parsing.cpp b/libkmime/tests/test_kmime_header_parsing.cpp index 7c93ec108..091b48a65 100644 --- a/libkmime/tests/test_kmime_header_parsing.cpp +++ b/libkmime/tests/test_kmime_header_parsing.cpp @@ -116,7 +116,7 @@ int main( int argc, char * argv[] ) { int index; for ( index = 0 ; index < tokenTypesLen ; ++index ) - if ( !qstricmp( tokenTypes[index], argument ) ) break; + if ( !tqstricmp( tokenTypes[index], argument ) ) break; if ( index >= tokenTypesLen ) usage( "unknown token type" ); diff --git a/libkmime/tests/test_mdn.cpp b/libkmime/tests/test_mdn.cpp index fa9290f20..e4a132d8d 100644 --- a/libkmime/tests/test_mdn.cpp +++ b/libkmime/tests/test_mdn.cpp @@ -52,7 +52,7 @@ int main( int argc, char * argv[] ) { long_options, &option_index ); if ( c == -1 ) break; -#define EQUALS(x) !qstricmp( optarg, x ) +#define EQUALS(x) !tqstricmp( optarg, x ) switch ( c ) { |