Untitled
unknown
c_cpp
5 years ago
626 B
10
Indexable
if (_startMode == StartMode::Review)
{
_listOfAcquisitionDetails.append(new AcquisitionDetails(tmpList->first()));
for (int i = 0; i < tmpList->length(); i++)
{
_listOfAcquisitionDetailsStudyList.append(new AcquisitionDetails(tmpList->at(i)));
examIds << tmpList->at(i).getExamId();
}
}
else
{
for (int i = 0; i < tmpList->length(); i++)
{
_listOfAcquisitionDetails.append(new AcquisitionDetails(tmpList->at(i)));
_listOfAcquisitionDetailsStudyList.append(new AcquisitionDetails(tmpList->at(i)));
examIds << tmpList->at(i).getExamId();
}
}Editor is loading...