Fix Possible inefficient checking for 'm_GlyphsList' emptiness
Change-Id: I65c30e751fc01b63a54aa9c31b4b2a792b795a79
This commit is contained in:
parent
f172cd7f0a
commit
c047ef2bf7
1 changed files with 1 additions and 1 deletions
|
@ -210,7 +210,7 @@ sal_Int32 PDFIProcessor::getFontId( const FontAttributes& rAttr ) const
|
|||
// line diagnose block - start
|
||||
void PDFIProcessor::processGlyphLine()
|
||||
{
|
||||
if( m_GlyphsList.size()<1 )
|
||||
if( m_GlyphsList.empty() )
|
||||
return;
|
||||
|
||||
double fPreAvarageSpaceValue= 0.0;
|
||||
|
|
Loading…
Reference in a new issue