summaryrefslogtreecommitdiffstats
path: root/certmanager/hierarchyanalyser.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'certmanager/hierarchyanalyser.cpp')
-rw-r--r--certmanager/hierarchyanalyser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/certmanager/hierarchyanalyser.cpp b/certmanager/hierarchyanalyser.cpp
index 96979adf4..39322abce 100644
--- a/certmanager/hierarchyanalyser.cpp
+++ b/certmanager/hierarchyanalyser.cpp
@@ -63,7 +63,7 @@ void HierarchyAnalyser::slotNextKey( const GpgME::Key & key ) {
const std::vector<GpgME::Key> & HierarchyAnalyser::subjectsForIssuer( const char * issuer_dn ) const {
static const std::vector<GpgME::Key> empty;
std::map< TQCString, std::vector<GpgME::Key> >::const_iterator it =
- mSubjectsByIssuer.tqfind( issuer_dn );
+ mSubjectsByIssuer.find( issuer_dn );
return it == mSubjectsByIssuer.end() ? empty : it->second ;
}