| 63 | } |
| 64 | |
| 65 | QString StashManagerDialog::selection() const |
| 66 | { |
| 67 | QModelIndex idx = m_ui->stashView->currentIndex(); |
| 68 | Q_ASSERT(idx.isValid()); |
| 69 | return idx.data(StashModel::RefRole).toString(); |
| 70 | } |
| 71 | |
| 72 | void StashManagerDialog::runStash(const QStringList& arguments) |
| 73 | { |
no test coverage detected