---------------------------------------------------------------------------
| 382 | } |
| 383 | //--------------------------------------------------------------------------- |
| 384 | void TMessMatch::DeleteEmptyLines(void) |
| 385 | { |
| 386 | for(int i=0; i<Text1->Count; i++) |
| 387 | if( Text1->Strings[i].Trim().Length() == 0 ) |
| 388 | Text1->Delete(i--); |
| 389 | for(int i=0; i<Text2->Count; i++) |
| 390 | if( Text2->Strings[i].Trim().Length() == 0 ) |
| 391 | Text2->Delete(i--); |
| 392 | } |
| 393 | //--------------------------------------------------------------------------- |
| 394 | String TMessMatch::GetDelimitedText(TStringList * p, String delimstr) |
| 395 | { |