diff options
author | Timothy Pearson <[email protected]> | 2012-03-01 13:35:40 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-03-01 13:35:40 -0600 |
commit | 17e2ed52dbf8fac39a04331da02b9572e9e2e304 (patch) | |
tree | cd0d57c975a55e05aac71794b363748f24625875 /certmanager/lib/kleo/cryptobackendfactory.cpp | |
parent | a684ecdeceae222d5aa930478b7bf59a3b7cae7f (diff) | |
download | tdepim-17e2ed52dbf8fac39a04331da02b9572e9e2e304.tar.gz tdepim-17e2ed52dbf8fac39a04331da02b9572e9e2e304.zip |
Rename additional global TQt functions
Diffstat (limited to 'certmanager/lib/kleo/cryptobackendfactory.cpp')
-rw-r--r-- | certmanager/lib/kleo/cryptobackendfactory.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/certmanager/lib/kleo/cryptobackendfactory.cpp b/certmanager/lib/kleo/cryptobackendfactory.cpp index 0d3cb1e96..295c05c60 100644 --- a/certmanager/lib/kleo/cryptobackendfactory.cpp +++ b/certmanager/lib/kleo/cryptobackendfactory.cpp @@ -211,7 +211,7 @@ static const char * defaultBackend( const char * proto ) { { "Chiasmus", "chiasmus" }, }; for ( unsigned int i = 0 ; i < sizeof defaults / sizeof *defaults ; ++i ) - if ( qstricmp( proto, defaults[i].proto ) == 0 ) + if ( tqstricmp( proto, defaults[i].proto ) == 0 ) return defaults[i].backend; return 0; } @@ -238,10 +238,10 @@ namespace { CaseInsensitiveString( const char * s ) : m( s ) {} #define make_operator( op ) \ bool operator op( const CaseInsensitiveString & other ) const { \ - return qstricmp( m, other.m ) op 0; \ + return tqstricmp( m, other.m ) op 0; \ } \ bool operator op( const char * other ) const { \ - return qstricmp( m, other ) op 0; \ + return tqstricmp( m, other ) op 0; \ } make_operator( == ) make_operator( != ) |