This commit is contained in:
Igor Pavlov
2015-09-22 00:00:00 +00:00
committed by Kornel Lesiński
parent cba375916f
commit f6444c3256
96 changed files with 7301 additions and 2409 deletions

View File

@@ -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;

View File

@@ -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)
{

View File

@@ -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)