diff --git a/examples/cmdline/search.cpp b/examples/cmdline/search.cpp index 8689039..0609cb4 100644 --- a/examples/cmdline/search.cpp +++ b/examples/cmdline/search.cpp @@ -99,7 +99,7 @@ int main(int argc, char **argv) VerseKey *parser = SWDYNAMIC_CAST(VerseKey, k); VerseKey kjvParser; if (!parser) parser = &kjvParser; // use standard KJV parsing as fallback - scope = parser->ParseVerseList(argv[3], *parser, true); + scope = parser->parseVerseList(argv[3], *parser, true); scope.Persist(1); target->setKey(scope); } diff --git a/examples/cmdline/threaded_search.cpp b/examples/cmdline/threaded_search.cpp index 69b3cf9..48fdcf1 100755 --- a/examples/cmdline/threaded_search.cpp +++ b/examples/cmdline/threaded_search.cpp @@ -98,7 +98,7 @@ void SearchThread::search() { return; } - ListKey scopeList = VerseKey().ParseVerseList("Luke;John;Revelation","", true); + ListKey scopeList = VerseKey().parseVerseList("Luke;John;Revelation","", true); for (int i=0; i < scopeList.Count(); ++i) { std::cout << (const char*)*scopeList.GetElement(i) << std::endl; } diff --git a/examples/cmdline/verserangeparse.cpp b/examples/cmdline/verserangeparse.cpp index 2800693..c29f324 100644 --- a/examples/cmdline/verserangeparse.cpp +++ b/examples/cmdline/verserangeparse.cpp @@ -45,7 +45,7 @@ int main(int argc, char **argv) VerseKey parser; ListKey result; - result = parser.ParseVerseList(range, parser, true); + result = parser.parseVerseList(range, parser, true); // let's iterate the key and display for (result = TOP; !result.Error(); result++) { cout << result << "\n";