SVN commit 946968 by cloose: Change KToolInvocation::invokeBrowser() to KRun::runUrl(). The added network folder opens now in dolphin instead of konqueror. BUG: 188041 M +3 -1 knetattach.cpp --- trunk/KDE/kdebase/runtime/knetattach/knetattach.cpp #946967:946968 @@ -32,6 +32,8 @@ #include #include +#include + KNetAttach::KNetAttach( QWidget* parent ) : Q3Wizard( parent ), Ui_KNetAttach() { @@ -215,7 +217,7 @@ return; } - KToolInvocation::invokeBrowser(url.url()); + KRun::runUrl(url, "inode/directory", this); QString name = _connectionName->text().trimmed();