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 | |
parent | a684ecdeceae222d5aa930478b7bf59a3b7cae7f (diff) | |
download | tdepim-17e2ed52dbf8fac39a04331da02b9572e9e2e304.tar.gz tdepim-17e2ed52dbf8fac39a04331da02b9572e9e2e304.zip |
Rename additional global TQt functions
Diffstat (limited to 'certmanager/lib/kleo')
-rw-r--r-- | certmanager/lib/kleo/cryptobackendfactory.cpp | 6 | ||||
-rw-r--r-- | certmanager/lib/kleo/cryptobackendfactory.h | 2 |
2 files changed, 4 insertions, 4 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( != ) diff --git a/certmanager/lib/kleo/cryptobackendfactory.h b/certmanager/lib/kleo/cryptobackendfactory.h index e674de11c..da1743f95 100644 --- a/certmanager/lib/kleo/cryptobackendfactory.h +++ b/certmanager/lib/kleo/cryptobackendfactory.h @@ -52,7 +52,7 @@ namespace Kleo { struct lt_i_str { bool operator()( const char * one, const char * two ) const { - return qstricmp( one, two ) < 0; + return tqstricmp( one, two ) < 0; } }; |