Git commit 4acfaa8b124538cb5e68450b50dd1f1a2423a344 by =C3=80lex Fiestas. Committed on 31/07/2015 at 09:39. Pushed by afiestas into branch 'master'. Remove trailing spaces and lines M +7 -7 kio/kiokdeconnect.cpp http://commits.kde.org/kdeconnect-kde/4acfaa8b124538cb5e68450b50dd1f1a2423a= 344 diff --git a/kio/kiokdeconnect.cpp b/kio/kiokdeconnect.cpp index 0333a9b..9d40ee5 100644 --- a/kio/kiokdeconnect.cpp +++ b/kio/kiokdeconnect.cpp @@ -123,26 +123,26 @@ void KioKdeconnect::listDevice() qCDebug(KDECONNECT_KIO) << "ListDevice" << m_currentDevice; = SftpDbusInterface interface(m_currentDevice); - = + QDBusReply mountreply =3D interface.mountAndWait(); - = + if (handleDBusError(mountreply, this)) { return; } - = + if (!mountreply.value()) { error(KIO::ERR_COULD_NOT_MOUNT, i18n("Could not mount device files= ystem")); return; } - = + QDBusReply< QVariantMap > urlreply =3D interface.getDirectories(); - = + if (handleDBusError(urlreply, this)) { return; } - = + QVariantMap urls =3D urlreply.value(); - = + for (QVariantMap::iterator it =3D urls.begin(); it !=3D urls.end(); it= ++) { = QString path =3D it.key();