summaryrefslogtreecommitdiffstats
path: root/certmanager/certmanager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'certmanager/certmanager.cpp')
-rw-r--r--certmanager/certmanager.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/certmanager/certmanager.cpp b/certmanager/certmanager.cpp
index c078315b..aebfa366 100644
--- a/certmanager/certmanager.cpp
+++ b/certmanager/certmanager.cpp
@@ -412,7 +412,7 @@ void CertManager::slotConfigureGpgME() {
void CertManager::slotRepaint()
{
- mKeyListView->repaintContents();
+ mKeyListView->tqrepaintContents();
}
void CertManager::slotToggleRemote( int idx ) {
@@ -500,7 +500,7 @@ static TQStringList stringlistFromSet( const std::set<std::string> & set ) {
TQStringList sl;
for ( std::set<std::string>::const_iterator it = set.begin() ; it != set.end() ; ++it )
// let's make extra sure, maybe someone tries to make Qt not support std::string->TQString conversion
- sl.push_back( TQString::fromLatin1( it->c_str() ) );
+ sl.push_back( TQString::tqfromLatin1( it->c_str() ) );
return sl;
}
@@ -1338,7 +1338,7 @@ void CertManager::startSecretKeyExport( const TQString & fingerprint ) {
};
TQStringList charsetList;
for ( const char** c = charsets; *c; ++c ) {
- charsetList.append( TQString::fromLatin1( *c ) );
+ charsetList.append( TQString::tqfromLatin1( *c ) );
}
// TODO this selection could be done in a derived KeySelectionDialog which would add a combobox,