diff options
author | Khaled Hosny <khaledhosny@eglug.org> | 2013-07-04 01:23:38 +0200 |
---|---|---|
committer | Khaled Hosny <khaledhosny@eglug.org> | 2013-07-04 01:23:38 +0200 |
commit | e703b429cf448deddc7682a33c3e6221889efe98 (patch) | |
tree | 9430681900fb91ffe9441f5833819e33fe1a031a | |
parent | 8a0c3a8e240d0ff44c07ecc946759726fdb605ad (diff) |
Minor
Change-Id: I6a9f34e6da1344e718ef5c8dc136fac7244b0f47
-rw-r--r-- | include/sal/log-areas.dox | 2 | ||||
-rw-r--r-- | vcl/generic/glyphs/gcach_layout.cxx | 10 |
2 files changed, 6 insertions, 6 deletions
diff --git a/include/sal/log-areas.dox b/include/sal/log-areas.dox index d70665a88f60..4e0d8ab25de3 100644 --- a/include/sal/log-areas.dox +++ b/include/sal/log-areas.dox @@ -297,7 +297,7 @@ certain functionality. @li @c vcl.fonts - font-specific code @li @c vcl.gdi - the GDI part of VCL, devices, bitmaps, etc. @li @c vcl.gtk - Gtk+ 2/3 plugin -@li @c vcl.harfbuzz.layout +@li @c vcl.harfbuzz - HarfBuzz text layout @li @c vcl.headless - bitmap-based backend @li @c vcl.kde - KDE @li @c vcl.kde4 - KDE4 diff --git a/vcl/generic/glyphs/gcach_layout.cxx b/vcl/generic/glyphs/gcach_layout.cxx index 0f69e597b848..c76bda68393a 100644 --- a/vcl/generic/glyphs/gcach_layout.cxx +++ b/vcl/generic/glyphs/gcach_layout.cxx @@ -148,7 +148,7 @@ static hb_blob_t *getFontTable(hb_face_t* /*face*/, hb_tag_t nTableTag, void* pU ServerFont* pFont = (ServerFont*) pUserData; - SAL_INFO("vcl.harfbuzz.layout", "getFontTable(" << pFont << ", " << pTagName << ")"); + SAL_INFO("vcl.harfbuzz", "getFontTable(" << pFont << ", " << pTagName << ")"); sal_uLong nLength; const unsigned char* pBuffer = pFont->GetTable(pTagName, &nLength); @@ -221,7 +221,7 @@ static hb_position_t getGlyphKerningH(hb_font_t* /*font*/, void* pFontData, ServerFont* pFont = (ServerFont*) pFontData; FT_Face aFace = pFont->GetFtFace(); - SAL_INFO("vcl.harfbuzz.layout", "getGlyphKerningH(" << pFont << ", " << nGlyphIndex1 << ", " << nGlyphIndex2 << ")"); + SAL_INFO("vcl.harfbuzz", "getGlyphKerningH(" << pFont << ", " << nGlyphIndex1 << ", " << nGlyphIndex2 << ")"); FT_Error error; FT_Vector kerning; @@ -252,7 +252,7 @@ static hb_bool_t getGlyphExtents(hb_font_t* /*font*/, void* pFontData, ServerFont* pFont = (ServerFont*) pFontData; FT_Face aFace = pFont->GetFtFace(); - SAL_INFO("vcl.harfbuzz.layout", "getGlyphExtents(" << pFont << ", " << nGlyphIndex << ")"); + SAL_INFO("vcl.harfbuzz", "getGlyphExtents(" << pFont << ", " << nGlyphIndex << ")"); FT_Error error; error = FT_Load_Glyph(aFace, nGlyphIndex, FT_LOAD_DEFAULT); @@ -276,7 +276,7 @@ static hb_bool_t getGlyphContourPoint(hb_font_t* /*font*/, void* pFontData, ServerFont* pFont = (ServerFont*) pFontData; FT_Face aFace = pFont->GetFtFace(); - SAL_INFO("vcl.harfbuzz.layout", "getGlyphContourPoint(" << pFont << ", " << nGlyphIndex << ", " << nPointIndex << ")"); + SAL_INFO("vcl.harfbuzz", "getGlyphContourPoint(" << pFont << ", " << nGlyphIndex << ", " << nPointIndex << ")"); FT_Error error; error = FT_Load_Glyph(aFace, nGlyphIndex, FT_LOAD_DEFAULT); @@ -350,7 +350,7 @@ bool HbLayoutEngine::layout(ServerFontLayout& rLayout, ImplLayoutArgs& rArgs) ServerFont& rFont = rLayout.GetServerFont(); FT_Face aFtFace = rFont.GetFtFace(); - SAL_INFO("vcl.harfbuzz.layout", "layout(" << this << ",rArgs=" << rArgs << ")"); + SAL_INFO("vcl.harfbuzz", "layout(" << this << ",rArgs=" << rArgs << ")"); hb_font_t *pHbFont = hb_font_create(mpHbFace); hb_font_set_funcs(pHbFont, getFontFuncs(), &rFont, NULL); |