Bug 229476 about:cache title capitalization inconsistent

patch by jmd@pobox.com r=bz sr=darin
This commit is contained in:
timeless%mozdev.org 2004-01-11 08:11:53 +00:00
Родитель 1a8048a611
Коммит c23df0d02b
2 изменённых файлов: 10 добавлений и 10 удалений

2
netwerk/cache/src/nsMemoryCacheDevice.cpp поставляемый
Просмотреть файл

@ -522,7 +522,7 @@ nsMemoryCacheDeviceInfo::GetUsageReport(char ** result)
NS_ENSURE_ARG_POINTER(result);
nsCString buffer;
buffer.Append("\n<tr>\n<td><b>Inactive Storage:</b></td>\n<td><tt> ");
buffer.Append("\n<tr>\n<td><b>Inactive storage:</b></td>\n<td><tt> ");
buffer.AppendInt(mDevice->mInactiveSize / 1024);
buffer.Append(" KiB</tt></td>\n</tr>\n");

Просмотреть файл

@ -264,7 +264,7 @@ nsAboutCache::VisitEntry(const char *deviceID,
mBuffer.Append("\n<b> Data size:</b>");
mBuffer.AppendInt(length);
mBuffer.Append(" Bytes");
mBuffer.Append(" bytes");
// Number of accesses
PRInt32 fetchCount = 0;
@ -278,7 +278,7 @@ nsAboutCache::VisitEntry(const char *deviceID,
PRUint32 t;
// Last modified time
mBuffer.Append("\n<b> Last Modified: </b>");
mBuffer.Append("\n<b> Last modified:</b>");
entryInfo->GetLastModified(&t);
if (t) {
PrintTimeString(buf, sizeof(buf), t);