Fixing thebes build bustage; bug 317375

This commit is contained in:
bzbarsky%mit.edu 2006-01-26 04:57:39 +00:00
Родитель 41dbec69db
Коммит ccd5715711
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -234,9 +234,9 @@ nsThebesRenderingContext::SetTranslation(nscoord aX, nscoord aY)
{
gfxMatrix mat = mThebes->CurrentMatrix();
gfxFloat a, b, c, d, tx, ty;
mat->ToValues(&a, &b, &c, &d, &tx, &ty);
mat.ToValues(&a, &b, &c, &d, &tx, &ty);
gfxMatrix newMat(a, b, c, d, aX, aY);
mThebes->SetMatrix(&newMat);
mThebes->SetMatrix(newMat);
return NS_OK;
}