From kde-core-devel Thu Feb 28 20:08:36 2002 From: Waldo Bastian Date: Thu, 28 Feb 2002 20:08:36 +0000 To: kde-core-devel Subject: Re: dcop Q X-MARC-Message: https://marc.info/?l=kde-core-devel&m=101492695623659 On Thursday 28 February 2002 03:39 am, Thomas Zander wrote: > Trying to fix bug where changing the proxy settings does not update ope= n > konqs. > > The proxy app does; > // Update all running and applicable io-slaves > QByteArray data; > QDataStream stream( data, IO_WriteOnly ); > stream << "http" << "https" << "ftp"; > if ( !kapp->dcopClient()->isAttached() ) > kapp->dcopClient()->attach(); > kapp->dcopClient()->send( "*", "KIO::Scheduler", > "reparseSlaveConfiguration(QString)", dat= a ); > > Is that correct? Then I have to look in konqueror.. Thanx. I don't think the=20 =09stream << "http" << "https" << ftp"; does what you think it does. It should be something like: =09stream << QString("http"); reparseSlaveConfiguration takes 1 argument, not 3. Cheers, Waldo --=20 Advanced technology only happens when people take a basic idea and add to= it. -- Bob Bemer