mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-07 20:06:59 -06:00
15.07
This commit is contained in:
committed by
Kornel Lesiński
parent
cba375916f
commit
f6444c3256
@@ -847,7 +847,7 @@ int Main2(
|
||||
#endif
|
||||
|
||||
ecs->Init(g_StdStream, g_ErrStream, percentsStream);
|
||||
ecs->MutiArcMode = (ArchivePathsSorted.Size() > 1);
|
||||
ecs->MultiArcMode = (ArchivePathsSorted.Size() > 1);
|
||||
|
||||
ecs->LogLevel = options.LogLevel;
|
||||
ecs->PercentsNameLevel = percentsNameLevel;
|
||||
|
||||
@@ -19,7 +19,7 @@ HRESULT COpenCallbackConsole::Open_CheckBreak()
|
||||
|
||||
HRESULT COpenCallbackConsole::Open_SetTotal(const UInt64 *files, const UInt64 *bytes)
|
||||
{
|
||||
if (!MutiArcMode && NeedPercents())
|
||||
if (!MultiArcMode && NeedPercents())
|
||||
{
|
||||
if (files)
|
||||
{
|
||||
@@ -46,7 +46,7 @@ HRESULT COpenCallbackConsole::Open_SetTotal(const UInt64 *files, const UInt64 *b
|
||||
|
||||
HRESULT COpenCallbackConsole::Open_SetCompleted(const UInt64 *files, const UInt64 *bytes)
|
||||
{
|
||||
if (!MutiArcMode && NeedPercents())
|
||||
if (!MultiArcMode && NeedPercents())
|
||||
{
|
||||
if (files)
|
||||
{
|
||||
|
||||
@@ -26,7 +26,7 @@ protected:
|
||||
|
||||
public:
|
||||
|
||||
bool MutiArcMode;
|
||||
bool MultiArcMode;
|
||||
|
||||
void ClosePercents()
|
||||
{
|
||||
@@ -37,7 +37,7 @@ public:
|
||||
COpenCallbackConsole():
|
||||
_totalFilesDefined(false),
|
||||
_totalBytesDefined(false),
|
||||
MutiArcMode(false)
|
||||
MultiArcMode(false)
|
||||
|
||||
#ifndef _NO_CRYPTO
|
||||
, PasswordIsDefined(false)
|
||||
|
||||
Reference in New Issue
Block a user