summaryrefslogtreecommitdiffstats
path: root/certmanager/lib/kleo
diff options
context:
space:
mode:
Diffstat (limited to 'certmanager/lib/kleo')
-rw-r--r--certmanager/lib/kleo/cryptobackendfactory.cpp6
-rw-r--r--certmanager/lib/kleo/cryptobackendfactory.h2
2 files changed, 4 insertions, 4 deletions
diff --git a/certmanager/lib/kleo/cryptobackendfactory.cpp b/certmanager/lib/kleo/cryptobackendfactory.cpp
index 0d3cb1e9..295c05c6 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 e674de11..da1743f9 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;
}
};