| 151 | } |
| 152 | |
| 153 | void BranchManager::renameBranch() |
| 154 | { |
| 155 | QModelIndex currentIndex = m_ui->branchView->currentIndex(); |
| 156 | if (!currentIndex.isValid()) |
| 157 | return; |
| 158 | |
| 159 | m_ui->branchView->edit(currentIndex); |
| 160 | } |
| 161 | |
| 162 | void BranchManager::checkoutBranch() |
| 163 | { |
no test coverage detected