aboutsummaryrefslogtreecommitdiff
path: root/CPP/7zip/UI/Console/PercentPrinter.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--CPP/7zip/UI/Console/PercentPrinter.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/CPP/7zip/UI/Console/PercentPrinter.cpp b/CPP/7zip/UI/Console/PercentPrinter.cpp
index 49d0393..9d392ab 100644
--- a/CPP/7zip/UI/Console/PercentPrinter.cpp
+++ b/CPP/7zip/UI/Console/PercentPrinter.cpp
@@ -79,7 +79,7 @@ void CPercentPrinter::GetPercents()
79 79
80 while (size < kPercentsSize) 80 while (size < kPercentsSize)
81 { 81 {
82 _s += ' '; 82 _s.Add_Space();
83 size++; 83 size++;
84 } 84 }
85 85
@@ -125,8 +125,8 @@ void CPercentPrinter::Print()
125 char s[32]; 125 char s[32];
126 ConvertUInt64ToString(Files, s); 126 ConvertUInt64ToString(Files, s);
127 // unsigned size = (unsigned)strlen(s); 127 // unsigned size = (unsigned)strlen(s);
128 // for (; size < 3; size++) _s += ' '; 128 // for (; size < 3; size++) _s.Add_Space();
129 _s += ' '; 129 _s.Add_Space();
130 _s += s; 130 _s += s;
131 // _s += "f"; 131 // _s += "f";
132 } 132 }
@@ -134,13 +134,13 @@ void CPercentPrinter::Print()
134 134
135 if (!Command.IsEmpty()) 135 if (!Command.IsEmpty())
136 { 136 {
137 _s += ' '; 137 _s.Add_Space();
138 _s += Command; 138 _s += Command;
139 } 139 }
140 140
141 if (!FileName.IsEmpty() && _s.Len() < MaxLen) 141 if (!FileName.IsEmpty() && _s.Len() < MaxLen)
142 { 142 {
143 _s += ' '; 143 _s.Add_Space();
144 144
145 _tempU = FileName; 145 _tempU = FileName;
146 _so->Normalize_UString(_tempU); 146 _so->Normalize_UString(_tempU);