Disable delete of folder object temparily.

This commit is contained in:
Klaas Freitag 2013-09-23 15:10:34 +02:00
parent 1988c9d8c4
commit 0959ceeff2

View file

@ -472,7 +472,10 @@ void FolderMan::removeFolder( const QString& alias )
qDebug() << "Remove folder config file " << file.fileName();
file.remove();
}
f->deleteLater();
// FIXME: this is a temporar dirty fix against a crash happening because
// the csync owncloud module still has static components. Activate the
// delete once the module is fixed.
// f->deleteLater();
}
}