---------------------------------------------------------------------------
| 106 | } |
| 107 | //--------------------------------------------------------------------------- |
| 108 | bool TSaveParamsINI::Save(void) |
| 109 | { |
| 110 | if( !f ) |
| 111 | return false; |
| 112 | bool rv = true; |
| 113 | try |
| 114 | { |
| 115 | if( f->Change ) |
| 116 | rv = f->UpdateFile(); |
| 117 | } |
| 118 | catch(...) |
| 119 | { rv = false; } |
| 120 | return rv; |
| 121 | } |
| 122 | //--------------------------------------------------------------------------- |
| 123 | void __fastcall TSaveParamsINI::SetFile(AnsiString inFile) |
| 124 | { |
nothing calls this directly
no test coverage detected