зеркало из https://github.com/mozilla/pjs.git
Fix bug 105344. r=saair, sr=darin.
This commit is contained in:
Родитель
0ea329c8ad
Коммит
fe2d32fd4e
|
@ -188,15 +188,15 @@ nsAboutCache::VisitDevice(const char *deviceID,
|
|||
value = 0;
|
||||
deviceInfo->GetMaximumSize(&value);
|
||||
mBuffer.Append("<td><tt>");
|
||||
mBuffer.AppendInt(value);
|
||||
mBuffer.Append(" Bytes</tt></td>\n</tr>\n");
|
||||
mBuffer.AppendInt(value/1024);
|
||||
mBuffer.Append(" k</tt></td>\n</tr>\n");
|
||||
|
||||
mBuffer.Append("\n<tr>\n<td><b>Storage in use: </b></td>\n");
|
||||
mBuffer.Append("<td><tt>");
|
||||
value = 0;
|
||||
deviceInfo->GetTotalSize(&value);
|
||||
mBuffer.AppendInt(value);
|
||||
mBuffer.Append(" Bytes</tt></td>\n</tr>\n");
|
||||
mBuffer.AppendInt(value/1024);
|
||||
mBuffer.Append(" k</tt></td>\n</tr>\n");
|
||||
|
||||
mBuffer.Append("</table>\n");
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче