MCPcopy Create free account
hub / github.com/MaxBelkov/visualsyslog / StringsToClipboard

Function StringsToClipboard

sourcecommon/utils.cpp:1490–1499  ·  view source on GitHub ↗

---------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

1488}
1489//---------------------------------------------------------------------------
1490void 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//---------------------------------------------------------------------------
1501bool MyStrToFloat(String str, double & result)
1502{

Callers

nothing calls this directly

Calls 1

setClipboardFunction · 0.85

Tested by

no test coverage detected