diff options
Diffstat (limited to '')
-rw-r--r-- | CPP/7zip/UI/Console/PercentPrinter.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/CPP/7zip/UI/Console/PercentPrinter.h b/CPP/7zip/UI/Console/PercentPrinter.h index 4debb3b..46988a5 100644 --- a/CPP/7zip/UI/Console/PercentPrinter.h +++ b/CPP/7zip/UI/Console/PercentPrinter.h | |||
@@ -43,12 +43,14 @@ class CPercentPrinter: public CPercentPrinterState | |||
43 | public: | 43 | public: |
44 | CStdOutStream *_so; | 44 | CStdOutStream *_so; |
45 | 45 | ||
46 | bool DisablePrint; | ||
46 | bool NeedFlush; | 47 | bool NeedFlush; |
47 | unsigned MaxLen; | 48 | unsigned MaxLen; |
48 | 49 | ||
49 | CPercentPrinter(UInt32 tickStep = 200): | 50 | CPercentPrinter(UInt32 tickStep = 200): |
50 | _tickStep(tickStep), | 51 | _tickStep(tickStep), |
51 | _prevTick(0), | 52 | _prevTick(0), |
53 | DisablePrint(false), | ||
52 | NeedFlush(true), | 54 | NeedFlush(true), |
53 | MaxLen(80 - 1) | 55 | MaxLen(80 - 1) |
54 | {} | 56 | {} |