Using C++ here.
Does the void BaseChart.setMonthNames( StringArray newMonthNames ) method copy the
string data out of the StringArray parameter before the call returns, or does my program
need to keep the data pointers alive until the chart is destructed?
The documentation makes no claims either way, and I don't want to be leaking memory or
freeing pointers prematurely. |