| 374 | { |
| 375 | auto lstIndex = m_pTreeView->selectionModel()->selectedIndexes(); |
| 376 | foreach(auto index, lstIndex) |
| 377 | { |
| 378 | QString szFile = m_pModel->data(index, CFavoriteModel::RoleFile).toString(); |
| 379 | if(!szFile.isEmpty()) |
| 380 | emit sigStart(CDatabaseFile::GetFile(szFile), false); |
| 381 | } |
| 382 | } |
| 383 | |
| 384 | void CFavoriteView::slotOpenStart() |