diff options
Diffstat (limited to 'kabc/kabc2mutt/kabc2mutt.cpp')
-rw-r--r-- | kabc/kabc2mutt/kabc2mutt.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kabc/kabc2mutt/kabc2mutt.cpp b/kabc/kabc2mutt/kabc2mutt.cpp index 96cf79232..b86521dd5 100644 --- a/kabc/kabc2mutt/kabc2mutt.cpp +++ b/kabc/kabc2mutt/kabc2mutt.cpp @@ -86,9 +86,9 @@ void KABC2Mutt::loadingFinished() else if ( !(*iaddr).familyName().isEmpty() ) key = (*iaddr).givenName().left( 1 ).lower() + - (*iaddr).familyName().lower().replace( space, underscore ); + (*iaddr).familyName().lower().tqreplace( space, underscore ); else - key = (*iaddr).givenName().lower().replace( space, underscore ); + key = (*iaddr).givenName().lower().tqreplace( space, underscore ); while ( from != to ) { std::cout << "alias " << key; @@ -101,7 +101,7 @@ void KABC2Mutt::loadingFinished() if ( !(*iaddr).nickName().isEmpty() ) { std::cout << "alias " - << (*iaddr).nickName().lower().replace( space, underscore ) + << (*iaddr).nickName().lower().tqreplace( space, underscore ) << '\t' << name << " <" << (*iaddr).preferredEmail() << '>' << std::endl; } @@ -140,7 +140,7 @@ void KABC2Mutt::loadingFinished() continue; if ( mFormat == Aliases ) { - std::cout << "alias " << (*iaddr).replace( TQRegExp( " " ), "_" ) + std::cout << "alias " << (*iaddr).tqreplace( TQRegExp( " " ), "_" ) << '\t' << emails.join( "," ) << std::endl; } else { std::cout << emails.join( "," ) << '\t' << (*iaddr) << '\t' << std::endl; |