mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-07 18:06:55 -06:00
15.05
This commit is contained in:
committed by
Kornel Lesiński
parent
0713a3ab80
commit
54490d51d5
@@ -24,15 +24,10 @@ void UpdateProduce(
|
||||
up2.NewData = up2.NewProps = true;
|
||||
up2.UseArcProps = false;
|
||||
|
||||
switch (actionSet.StateActions[pair.State])
|
||||
switch (actionSet.StateActions[(unsigned)pair.State])
|
||||
{
|
||||
case NPairAction::kIgnore:
|
||||
/*
|
||||
if (pair.State != NPairState::kOnlyOnDisk)
|
||||
IgnoreArchiveItem(m_ArchiveItems[pair.ArcIndex]);
|
||||
// cout << "deleting";
|
||||
*/
|
||||
if (callback)
|
||||
if (pair.ArcIndex >= 0 && callback)
|
||||
callback->ShowDeleteFile(pair.ArcIndex);
|
||||
continue;
|
||||
|
||||
@@ -67,7 +62,9 @@ void UpdateProduce(
|
||||
up2.UseArcProps = (pair.ArcIndex >= 0);
|
||||
break;
|
||||
}
|
||||
|
||||
operationChain.Add(up2);
|
||||
}
|
||||
|
||||
operationChain.ReserveDown();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user