---------------------------------------------------------------------------
| 115 | } |
| 116 | //--------------------------------------------------------------------------- |
| 117 | bool TMYIniFile::IsSectionName(String Section) |
| 118 | { |
| 119 | String s = Section.TrimLeft(); |
| 120 | if( s.Length() > 3 ) |
| 121 | if( s[1]=='[' ) |
| 122 | return true; |
| 123 | return false; |
| 124 | //return *SkipStartCntlChars(Section)=='['; |
| 125 | } |
| 126 | //--------------------------------------------------------------------------- |
| 127 | // � ������ s �������� "\" �� "\r\n", � "\\" �� "\" |
| 128 | AnsiString TMYIniFile::SpecialReplace(AnsiString s) |
nothing calls this directly
no outgoing calls
no test coverage detected