From 4acfaa8b124538cb5e68450b50dd1f1a2423a344 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=80lex=20Fiestas?= Date: Fri, 31 Jul 2015 11:39:58 +0200 Subject: [PATCH] Remove trailing spaces and lines --- kio/kiokdeconnect.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/kio/kiokdeconnect.cpp b/kio/kiokdeconnect.cpp index 0333a9b4f..9d40ee57b 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 = interface.mountAndWait(); - + if (handleDBusError(mountreply, this)) { return; } - + if (!mountreply.value()) { error(KIO::ERR_COULD_NOT_MOUNT, i18n("Could not mount device filesystem")); return; } - + QDBusReply< QVariantMap > urlreply = interface.getDirectories(); - + if (handleDBusError(urlreply, this)) { return; } - + QVariantMap urls = urlreply.value(); - + for (QVariantMap::iterator it = urls.begin(); it != urls.end(); it++) { QString path = it.key();