summaryrefslogtreecommitdiff
path: root/vcl/coretext
diff options
context:
space:
mode:
authorKhaled Hosny <khaledhosny@eglug.org>2013-05-09 23:49:45 +0200
committerKhaled Hosny <khaledhosny@eglug.org>2013-05-09 23:49:45 +0200
commit543ac5596d0ef3a052973c1ec89a9329d1073dc8 (patch)
treed0e38c3c5390725547fe2d04384e98ef10f5ab98 /vcl/coretext
parent924aeb3d039f4ce554b795532e6948fa9065010b (diff)
Minor
Change-Id: I31b95844234135d14f117ae74124350eedf7d20a
Diffstat (limited to 'vcl/coretext')
-rw-r--r--vcl/coretext/salgdi.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/coretext/salgdi.cxx b/vcl/coretext/salgdi.cxx
index 227a5c4ad3a8..58e850d46763 100644
--- a/vcl/coretext/salgdi.cxx
+++ b/vcl/coretext/salgdi.cxx
@@ -149,10 +149,10 @@ void QuartzSalGraphics::GetFontMetric( ImplFontMetricData* pMetric, int nFallbac
CTFontRef font = m_style->GetFont();
DBG_ASSERT(font, "GetFontMetric without font set in style");
- pMetric->mnAscent = static_cast<long>( CTFontGetAscent(font) * mfFakeDPIScale + 0.5);
+ pMetric->mnAscent = static_cast<long>(CTFontGetAscent(font) * mfFakeDPIScale + 0.5);
pMetric->mnDescent = static_cast<long>(CTFontGetDescent(font) * mfFakeDPIScale + 0.5);
pMetric->mnExtLeading = static_cast<long>(CTFontGetLeading(font) * mfFakeDPIScale + 0.5);
- pMetric->mnIntLeading = 0;
+ pMetric->mnIntLeading = 0;
pMetric->mnWidth = m_style->GetFontStretchedSize();
SAL_INFO( "vcl.coretext.gr",