| 478 | } |
| 479 | |
| 480 | const char* Settings::findNextValue() |
| 481 | { |
| 482 | if ( mSearchPos + 1 >= mSearchResults.size() ) |
| 483 | return ""; |
| 484 | mSearchPos++; |
| 485 | return mSearchResults[mSearchPos]; |
| 486 | } |
| 487 | |
| 488 | // make sure to replace the strings |
| 489 | DefineEngineMethod(Settings, findFirstValue, const char*, ( const char* pattern, bool deepSearch, bool includeDefaults ), ("", false, false), "settingObj.findFirstValue();") |
no test coverage detected