From kde-commits Sat Dec 07 04:26:42 2002 From: Dirk Mueller Date: Sat, 07 Dec 2002 04:26:42 +0000 To: kde-commits Subject: make_it_cool: kdenetwork/kmail X-MARC-Message: https://marc.info/?l=kde-commits&m=103923528426777 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; }