You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
570 B
14 lines
570 B
--- bibletime/bibletime/frontend/cinfodisplay.cpp.ORI 2012-05-01 14:13:38.750903801 +0200
|
|
+++ bibletime/bibletime/frontend/cinfodisplay.cpp 2012-05-01 14:14:59.998011927 +0200
|
|
@@ -229,8 +229,8 @@
|
|
VerseKey vk;
|
|
sword::ListKey refs = vk.ParseVerseList((const char*)data.mid((pos == -1) ? 0 : pos+1).utf8(), "Gen 1:1", true);
|
|
|
|
- for (int i = 0; i < refs.Count(); ++i) {
|
|
- SWKey* key = refs.getElement(i);
|
|
+ for (int j = 0; j < refs.Count(); ++j) {
|
|
+ SWKey* key = refs.getElement(j);
|
|
Q_ASSERT(key);
|
|
VerseKey* vk = dynamic_cast<VerseKey*>(key);
|
|
|