[poppler] 2 commits -
Albert Astals Cid
aacid at kemper.freedesktop.org
Thu Nov 8 15:38:34 PST 2012
0 files changed
New commits:
commit 98b7cfd289abb53a745a88d6ec99e95df477fc8f
Merge: 40efa72... d254174...
Author: Albert Astals Cid <aacid at kde.org>
Date: Fri Nov 9 00:38:19 2012 +0100
Merge remote-tracking branch 'origin/poppler-0.20'
Conflicts:
poppler/Form.cc
commit d254174e08146115ad04ac1f1bf82bb26e56c684
Author: Fabio D'Urso <fabiodurso at hotmail.it>
Date: Wed Oct 31 16:57:56 2012 +0100
FormFieldChoice::updateSelection: Fixed wrong loop condition
diff --git a/poppler/Form.cc b/poppler/Form.cc
index a2be980..0940932 100644
--- a/poppler/Form.cc
+++ b/poppler/Form.cc
@@ -1198,7 +1198,7 @@ void FormFieldChoice::updateSelection() {
if (numSelected == 0) {
obj1.initString(new GooString(""));
} else if (numSelected == 1) {
- for (int i = 0; numChoices; i++) {
+ for (int i = 0; i < numChoices; i++) {
if (choices[i].optionName && choices[i].selected) {
obj1.initString(choices[i].optionName->copy());
break;
More information about the poppler
mailing list