[Libreoffice-commits] core.git: include/sal vcl/generic

Khaled Hosny khaledhosny at eglug.org
Wed Jul 3 16:24:10 PDT 2013


 include/sal/log-areas.dox           |    2 +-
 vcl/generic/glyphs/gcach_layout.cxx |   10 +++++-----
 2 files changed, 6 insertions(+), 6 deletions(-)

New commits:
commit e703b429cf448deddc7682a33c3e6221889efe98
Author: Khaled Hosny <khaledhosny at eglug.org>
Date:   Thu Jul 4 01:23:38 2013 +0200

    Minor
    
    Change-Id: I6a9f34e6da1344e718ef5c8dc136fac7244b0f47

diff --git a/include/sal/log-areas.dox b/include/sal/log-areas.dox
index d70665a..4e0d8ab 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
- at li @c vcl.harfbuzz.layout
+ at 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 0f69e59..c76bda6 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);


More information about the Libreoffice-commits mailing list