fixes bug 132633 "navigator.appVersion no longer returns OS version !"

r=bzbarsky, sr=rpotts, a=scc
This commit is contained in:
darin%netscape.com 2002-03-22 21:25:58 +00:00
Родитель 938b4e9181
Коммит 816733f449
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -1897,7 +1897,7 @@ nsHttpHandler::SetProductSub(const nsACString &value)
NS_IMETHODIMP
nsHttpHandler::GetProductComment(nsACString &value)
{
mProductComment = value;
value = mProductComment;
return NS_OK;
}
NS_IMETHODIMP
@ -1911,7 +1911,7 @@ nsHttpHandler::SetProductComment(const nsACString &value)
NS_IMETHODIMP
nsHttpHandler::GetPlatform(nsACString &value)
{
mPlatform = value;
value = mPlatform;
return NS_OK;
}