CVS commit by mueller: yet another branch of kmail with the same bug M +1 -3 kmaddrbook.cpp 1.54.2.4 --- kdenetwork/kmail/kmaddrbook.cpp:1.54.2.3 Wed Nov 27 19:16:42 2002 @@ -163,11 +163,9 @@ //----------------------------------------------------------------------------- void KMAddrBookExternal::openEmail( const QString &addr, QWidget *) { - QString address = addr; - address.replace( QRegExp("\""), "" ); if (useKAddressbook()) { if ( checkForAddressBook() ) { - KRun::runCommand( "kaddressbook -a \"" + address + "\"" ); + KRun::runCommand( "kaddressbook -a " + KProcess::quote(addr) ); } return; }