Kaydet (Commit) bcb4defe authored tarafından Korrawit Pruegsanusak's avatar Korrawit Pruegsanusak Kaydeden (comit) Caolán McNamara

Fix fdo#45848

regression from 5dd4f9ec
The change:
-    if(m_GlyphsList.size()>1)
+    if(!m_GlyphsList.empty())
is incorrect, so change it back.
üst d2bfa5cf
......@@ -399,7 +399,7 @@ void PDFIProcessor::processGlyphLine()
}
if(!m_GlyphsList.empty())
if(m_GlyphsList.size()>1)
processGlyph( 0,
m_GlyphsList[m_GlyphsList.size()-1],
pPara,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment