---------------------------------------------------------------------------
| 1488 | } |
| 1489 | //--------------------------------------------------------------------------- |
| 1490 | void StringsToClipboard(TStrings * p) |
| 1491 | { |
| 1492 | String str; |
| 1493 | for(int i=0; i<p->Count; i++) |
| 1494 | { |
| 1495 | str += p->Strings[i] + "\r\n"; |
| 1496 | } |
| 1497 | //Clipboard()->SetTextBuf(str.c_str()); don't work in CodeGear 2007 |
| 1498 | setClipboard(str); |
| 1499 | } |
| 1500 | //--------------------------------------------------------------------------- |
| 1501 | bool MyStrToFloat(String str, double & result) |
| 1502 | { |
nothing calls this directly
no test coverage detected