| 1128 | } |
| 1129 | |
| 1130 | void Set::staticRef() |
| 1131 | { |
| 1132 | if (!m_tree) |
| 1133 | return; |
| 1134 | |
| 1135 | QMutexLocker lock(m_repository->m_mutex); |
| 1136 | SetNodeData* data = m_repository->m_dataRepository.dynamicItemFromIndexSimple(m_tree); |
| 1137 | ++data->m_refCount; |
| 1138 | } |
| 1139 | |
| 1140 | ///Mutex must be locked |
| 1141 | void Set::unrefNode(uint current) |
no test coverage detected