From ea9e2135a1662033ab3eec30fcb4d41c85ed6ede Mon Sep 17 00:00:00 2001 From: Tomaz Canabrava Date: Fri, 3 Nov 2017 14:28:13 +0100 Subject: [PATCH] [CSE] Remove uneeded comments. --- src/gui/accountsettings.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/gui/accountsettings.cpp b/src/gui/accountsettings.cpp index c269a3af38..8451c6b9e6 100644 --- a/src/gui/accountsettings.cpp +++ b/src/gui/accountsettings.cpp @@ -299,9 +299,6 @@ void AccountSettings::slotUnlockFolderSuccess(const QByteArray& fileId) } void AccountSettings::slotMarkSubfolderEncrpted(const QByteArray& fileId) { - //TODO: No good, we are three levels down in signal/slot hell. - // as soon as this works, rework this function to be way less - // deep. auto job = new OCC::SetEncryptionFlagApiJob(accountsState()->account(), fileId); connect(job, &OCC::SetEncryptionFlagApiJob::success, this, &AccountSettings::slotEncryptionFlagSuccess); connect(job, &OCC::SetEncryptionFlagApiJob::error, this, &AccountSettings::slotEncryptionFlagError);