summaryrefslogtreecommitdiff
path: root/vcl/coretext
diff options
context:
space:
mode:
authorMichael Meeks <michael.meeks@suse.com>2013-08-20 18:26:05 +0100
committerMichael Meeks <michael.meeks@suse.com>2013-08-20 19:30:59 +0000
commit1c7af455ab9345304a7ac48ce2e0310de2ac8a75 (patch)
tree4c71062081ca1990f45c33c6a3ed0ed14278bd34 /vcl/coretext
parentc3164e42dcdf879ed53e235db13f498eb730bae9 (diff)
Re-work 8bit characters in source code, or remove them.
Change-Id: I93e14d4936c0ffbe03425d4a54bb0e09bc62b3e3 Reviewed-on: https://gerrit.libreoffice.org/5550 Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org> Reviewed-by: Michael Meeks <michael.meeks@suse.com> Tested-by: Michael Meeks <michael.meeks@suse.com>
Diffstat (limited to 'vcl/coretext')
-rw-r--r--vcl/coretext/ctlayout.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/coretext/ctlayout.cxx b/vcl/coretext/ctlayout.cxx
index 41e346072730..bc9213bbb87e 100644
--- a/vcl/coretext/ctlayout.cxx
+++ b/vcl/coretext/ctlayout.cxx
@@ -389,7 +389,7 @@ long CTLayout::FillDXArray( sal_Int32* pDXArray ) const
// initialize the result array
for( int i = 0; i < mnCharCount; ++i)
pDXArray[i] = 0;
- // handle each glyph run
+ // handle each glyph run
CFArrayRef aGlyphRuns = CTLineGetGlyphRuns( mpCTLine );
const int nRunCount = CFArrayGetCount( aGlyphRuns );
typedef std::vector<CGSize> CGSizeVector;