summaryrefslogtreecommitdiff
path: root/gfx/thebes/gfxFT2Utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'gfx/thebes/gfxFT2Utils.h')
-rw-r--r--gfx/thebes/gfxFT2Utils.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gfx/thebes/gfxFT2Utils.h b/gfx/thebes/gfxFT2Utils.h
index 35958bbf79..cabbe3874f 100644
--- a/gfx/thebes/gfxFT2Utils.h
+++ b/gfx/thebes/gfxFT2Utils.h
@@ -24,12 +24,12 @@ class gfxFT2LockedFace {
public:
explicit gfxFT2LockedFace(gfxFT2FontBase *aFont) :
mGfxFont(aFont),
- mFace(cairo_ft_scaled_font_lock_face(aFont->CairoScaledFont()))
+ mFace(cairo_ft_scaled_font_lock_face(aFont->GetCairoScaledFont()))
{ }
~gfxFT2LockedFace()
{
if (mFace) {
- cairo_ft_scaled_font_unlock_face(mGfxFont->CairoScaledFont());
+ cairo_ft_scaled_font_unlock_face(mGfxFont->GetCairoScaledFont());
}
}