diff options
author | Job Bautista <jobbautista9@protonmail.com> | 2023-04-05 21:20:34 +0800 |
---|---|---|
committer | Job Bautista <jobbautista9@protonmail.com> | 2023-04-05 21:22:18 +0800 |
commit | 7fe1f000c7b3937f024eebffd651a1420cb9533e (patch) | |
tree | 41f55fbf8ca471100ba03e268487cce50535a7ba /gfx | |
parent | 5e50b32a3c56cea2df0e50524419074075055555 (diff) | |
download | uxp-7fe1f000c7b3937f024eebffd651a1420cb9533e.tar.gz |
Issue #2191 - Follow-up: Add missing mozilla::gfx in gfxFcPlatformFontList.cpp
Fixes build bustage in GNU/Linux
Diffstat (limited to 'gfx')
-rw-r--r-- | gfx/thebes/gfxFcPlatformFontList.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gfx/thebes/gfxFcPlatformFontList.cpp b/gfx/thebes/gfxFcPlatformFontList.cpp index 130b8df1ed..f80196430f 100644 --- a/gfx/thebes/gfxFcPlatformFontList.cpp +++ b/gfx/thebes/gfxFcPlatformFontList.cpp @@ -38,6 +38,7 @@ #endif using namespace mozilla; +using namespace mozilla::gfx; using namespace mozilla::unicode; #ifndef FC_POSTSCRIPT_NAME @@ -1104,7 +1105,7 @@ gfxFontconfigFont::~gfxFontconfigFont() } already_AddRefed<ScaledFont> -gfxFontconfigFont::GetScaledFont(mozilla::gfx::DrawTarget *aTarget) +gfxFontconfigFont::GetScaledFont(DrawTarget *aTarget) { if (!mAzureScaledFont) { mAzureScaledFont = |