diff options
author | Albert Astals Cid <aacid@kde.org> | 2008-01-24 21:14:44 +0100 |
---|---|---|
committer | Albert Astals Cid <aacid@kde.org> | 2008-01-24 21:14:44 +0100 |
commit | 5238cbd796c3f7e23e275adc0c63141e2c3587f2 (patch) | |
tree | 8760b71fe17e7e102e632f52ae6cf6760cf92fe9 | |
parent | be483cf92bcf113d5b1ec566890eff5e11a1efae (diff) |
Incrementing the iterator would be a good idea
-rw-r--r-- | qt4/src/poppler-annotation.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qt4/src/poppler-annotation.cc b/qt4/src/poppler-annotation.cc index 14522b24..9d171a6e 100644 --- a/qt4/src/poppler-annotation.cc +++ b/qt4/src/poppler-annotation.cc @@ -785,6 +785,7 @@ void LineAnnotation::store( QDomNode & node, QDomDocument & document ) const lineElement.appendChild( pElement ); pElement.setAttribute( "x", p.x() ); pElement.setAttribute( "y", p.y() ); + ++it; } } } |