diff options
Diffstat (limited to 'kopete/protocols/groupwise/gwprotocol.cpp')
-rw-r--r-- | kopete/protocols/groupwise/gwprotocol.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kopete/protocols/groupwise/gwprotocol.cpp b/kopete/protocols/groupwise/gwprotocol.cpp index 4abdab9f..0a9e09ee 100644 --- a/kopete/protocols/groupwise/gwprotocol.cpp +++ b/kopete/protocols/groupwise/gwprotocol.cpp @@ -264,7 +264,7 @@ TQString GroupWiseProtocol::rtfizeText( const TQString & plain ) TQString GroupWiseProtocol::dnToDotted( const TQString & dn ) { TQRegExp rx("[a-zA-Z]*=(.*)$", false ); - if( !dn.tqfind( '=' ) ) // if it's not a DN, return it unprocessed + if( !dn.find( '=' ) ) // if it's not a DN, return it unprocessed return dn; // split the dn into elements |