Git commit f44bac2fa7e1da4adab441b2dfe197552ba18c73 by David Rosca. Committed on 31/03/2015 at 20:36. Pushed by drosca into branch 'bluezqt'. Send file wizard: Attempt to start obexd when starting wizard If obexd is not running, sending files to the device would fail, so this attempts to start obexd (with DBus activation) on wizard startup. M +3 -0 src/sendfile/sendfilewizard.cpp http://commits.kde.org/bluedevil/f44bac2fa7e1da4adab441b2dfe197552ba18c73 diff --git a/src/sendfile/sendfilewizard.cpp b/src/sendfile/sendfilewizard.= cpp index 4c0c7b4..37b78dd 100644 --- a/src/sendfile/sendfilewizard.cpp +++ b/src/sendfile/sendfilewizard.cpp @@ -64,6 +64,9 @@ SendFileWizard::SendFileWizard(const QString &device, con= st QStringList &files) BluezQt::InitManagerJob *initJob =3D m_manager->init(); initJob->start(); connect(initJob, &BluezQt::InitManagerJob::result, this, &SendFileWiza= rd::initJobResult); + + // Make sure that obexd is running + BluezQt::ObexManager::startService(); } = SendFileWizard::~SendFileWizard()