[sword-svn] r3225 - trunk/bindings
scribe at crosswire.org
scribe at crosswire.org
Thu May 1 12:28:22 MST 2014
Author: scribe
Date: 2014-05-01 12:28:22 -0700 (Thu, 01 May 2014)
New Revision: 3225
Modified:
trunk/bindings/flatapi.cpp
Log:
updated flatapi to qualify sword::stricmp
Modified: trunk/bindings/flatapi.cpp
===================================================================
--- trunk/bindings/flatapi.cpp 2014-05-01 19:28:08 UTC (rev 3224)
+++ trunk/bindings/flatapi.cpp 2014-05-01 19:28:22 UTC (rev 3225)
@@ -569,11 +569,11 @@
sword::VerseKey *vkey = SWDYNAMIC_CAST(VerseKey, key);
if (vkey) {
if ((*keyText=='+' || *keyText=='-')) {
- if (!stricmp(keyText+1, "book")) {
+ if (!sword::stricmp(keyText+1, "book")) {
vkey->setBook(vkey->getBook() + ((*keyText=='+')?1:-1));
return;
}
- else if (!stricmp(keyText+1, "chapter")) {
+ else if (!sword::stricmp(keyText+1, "chapter")) {
vkey->setChapter(vkey->getChapter() + ((*keyText=='+')?1:-1));
return;
}
More information about the sword-cvs
mailing list