Fixing thebes build bustage; bug 317375
git-svn-id: svn://10.0.0.236/trunk@188217 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
parent
2d6b68dadc
commit
df58ee313e
@ -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;
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user