From df58ee313eb800da4966d01ae78e2a88de6238fc Mon Sep 17 00:00:00 2001 From: "bzbarsky%mit.edu" Date: Thu, 26 Jan 2006 04:57:39 +0000 Subject: [PATCH] Fixing thebes build bustage; bug 317375 git-svn-id: svn://10.0.0.236/trunk@188217 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/gfx/src/thebes/nsThebesRenderingContext.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mozilla/gfx/src/thebes/nsThebesRenderingContext.cpp b/mozilla/gfx/src/thebes/nsThebesRenderingContext.cpp index 63e2ae2294f..9acdc305a4c 100644 --- a/mozilla/gfx/src/thebes/nsThebesRenderingContext.cpp +++ b/mozilla/gfx/src/thebes/nsThebesRenderingContext.cpp @@ -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; }