Merge branch 'FixAndCheckAutoDelete' of https://github.com/love-code-yeyixiao/Sandboxie into FixAndCheckAutoDelete

This commit is contained in:
love-code-yeyixiao 2024-03-02 10:59:20 +08:00
commit ef9170b4ae
1 changed files with 0 additions and 22 deletions

View File

@ -281,28 +281,6 @@ CSandMan::CSandMan(QWidget *parent)
connect(theAPI, SIGNAL(ConfigReloaded()), this, SLOT(OnIniReloaded()));
connect(qApp, &QGuiApplication::commitDataRequest, this, &CSandMan::commitData);
if (theConf->GetBool("Options/CheckAutoDelete", false)) {
for (auto& box : theAPI->GetAllBoxes().toStdMap()) {
CSandBoxPtr pBox = box.second;
if (box.second->GetActiveProcessCount() == 0) {
if (!pBox->GetBool("NeverDelete", false))
{
if (pBox->GetBool("AutoDelete", false))
{
bool DeleteSnapshots = false;
// if this box auto deletes first show the recovry dialog with the option to abort deletion
//if (!theGUI->OpenRecovery(pBox, DeleteSnapshots, true)) // unless no files are found than continue silently
// return;
if (theConf->GetBool("Options/AutoBoxOpsNotify", false))
OnLogMessage(tr("Auto deleting content of %1").arg(pBox->GetName()), true);
DeleteBoxContent(pBox, eAuto, DeleteSnapshots);
}
}
}
}
}
m_uTimerID = startTimer(1000);