diff options
Diffstat (limited to 'kaddressbook/xxport/eudora_xxport.cpp')
-rw-r--r-- | kaddressbook/xxport/eudora_xxport.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kaddressbook/xxport/eudora_xxport.cpp b/kaddressbook/xxport/eudora_xxport.cpp index ca804fe30..9844b5507 100644 --- a/kaddressbook/xxport/eudora_xxport.cpp +++ b/kaddressbook/xxport/eudora_xxport.cpp @@ -152,9 +152,9 @@ TQString EudoraXXPort::email( const TQString& line ) const { int b; TQString result; - b = line.findRev( '\"' ); + b = line.tqfindRev( '\"' ); if ( b == -1 ) { - b = line.findRev( ' ' ); + b = line.tqfindRev( ' ' ); if ( b == -1 ) return result; } @@ -168,9 +168,9 @@ TQString EudoraXXPort::comment( const TQString& line ) const int b; TQString result; uint i; - b = line.findRev( '>' ); + b = line.tqfindRev( '>' ); if ( b == -1 ) { - b = line.findRev( '\"' ); + b = line.tqfindRev( '\"' ); if ( b == -1 ) return result; } |