---------------------------------------------------------------------------
| 75 | } |
| 76 | //--------------------------------------------------------------------------- |
| 77 | bool TSaveParamsINI::ValueExists(const AnsiString Section, const AnsiString name) |
| 78 | { |
| 79 | if( !f ) |
| 80 | Load(fFile); |
| 81 | if( f ) |
| 82 | return f->ValueExists(Section.c_str(), name.c_str()); |
| 83 | else |
| 84 | return false; |
| 85 | } |
| 86 | //--------------------------------------------------------------------------- |
| 87 | bool TSaveParamsINI::Load(AnsiString inFile) |
| 88 | { |
nothing calls this directly
no outgoing calls
no test coverage detected