summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2014-05-21 13:25:53 +0300
committerTor Lillqvist <tml@collabora.com>2014-05-21 13:26:15 +0300
commitc1dbed8ac63ffc3c9112c88b05398caaaca52dc7 (patch)
tree14db4ac1d8cb8db5bb3ee7ca5b7ec6ca4ab1d3ca
parent02dcdb10111b9c5f644cbded01c6da688e807dac (diff)
Use more specific tag
Change-Id: Ife10cae3f0bd7dd294c74799412528f2596369c8
-rw-r--r--include/sal/log-areas.dox1
-rw-r--r--vcl/source/outdev/font.cxx2
2 files changed, 2 insertions, 1 deletions
diff --git a/include/sal/log-areas.dox b/include/sal/log-areas.dox
index 857302af780a..826872d6a514 100644
--- a/include/sal/log-areas.dox
+++ b/include/sal/log-areas.dox
@@ -373,6 +373,7 @@ certain functionality.
@li @c vcl.filter
@li @c vcl.fonts - font-specific code
@li @c vcl.gdi - the GDI part of VCL, devices, bitmaps, etc.
+@li @c vcl.gdi.fontmetric
@li @c vcl.gtk - Gtk+ 2/3 plugin
@li @c vcl.harfbuzz - HarfBuzz text layout
@li @c vcl.headless - bitmap-based backend
diff --git a/vcl/source/outdev/font.cxx b/vcl/source/outdev/font.cxx
index 008ad172f844..ef1f760bfb44 100644
--- a/vcl/source/outdev/font.cxx
+++ b/vcl/source/outdev/font.cxx
@@ -201,7 +201,7 @@ FontMetric OutputDevice::GetFontMetric() const
aMetric.mpImplMetric->mnLineHeight = ImplDevicePixelToLogicHeight( pMetric->mnAscent+pMetric->mnDescent+mnEmphasisAscent+mnEmphasisDescent );
aMetric.mpImplMetric->mnSlant = ImplDevicePixelToLogicHeight( pMetric->mnSlant );
- SAL_INFO("vcl.gdi", "OutputDevice::GetFontMetric:" << aMetric);
+ SAL_INFO("vcl.gdi.fontmetric", "OutputDevice::GetFontMetric:" << aMetric);
return aMetric;
}