diff options
Diffstat (limited to 'vcl/source/gdi/pdfwriter_impl.cxx')
-rw-r--r-- | vcl/source/gdi/pdfwriter_impl.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/gdi/pdfwriter_impl.cxx b/vcl/source/gdi/pdfwriter_impl.cxx index a85e7515e513..eabf0c1b8c1d 100644 --- a/vcl/source/gdi/pdfwriter_impl.cxx +++ b/vcl/source/gdi/pdfwriter_impl.cxx @@ -9135,7 +9135,7 @@ void PDFWriterImpl::drawLayout( SalLayout& rLayout, const OUString& rText, bool if( !rLayout.GetNextGlyphs( 1, &aGlyphId, aPos, nStart, &nAdvance ) ) break; - if( !rLayout.IsSpacingGlyph( aGlyphId ) ) + if( !SalLayout::IsSpacingGlyph( aGlyphId ) ) { if( !nWidth ) aStartPt = aPos; @@ -9235,7 +9235,7 @@ void PDFWriterImpl::drawLayout( SalLayout& rLayout, const OUString& rText, bool if( !rLayout.GetNextGlyphs( 1, &aGlyphId, aPos, nStart, &nAdvance ) ) break; - if( !rLayout.IsSpacingGlyph( aGlyphId ) ) + if( !SalLayout::IsSpacingGlyph( aGlyphId ) ) { Point aAdjOffset = aOffset; aAdjOffset.X() += (nAdvance - nEmphWidth) / 2; |