| 3647 | } |
| 3648 | |
| 3649 | void StructuredDataItemModel::setObjects(const rdcarray<SDObject *> &objs) |
| 3650 | { |
| 3651 | emit beginResetModel(); |
| 3652 | m_Objects = objs; |
| 3653 | emit endResetModel(); |
| 3654 | } |
| 3655 | |
| 3656 | // on 64-bit we've got plenty of bits so we can pack the indices into top/bottom 32-bits. |
| 3657 | // on 32-bit we assume there won't be any huge arrays or we'll run out of memory elsewhere probably, |
no outgoing calls