| 70 | } |
| 71 | |
| 72 | void StashManagerDialog::runStash(const QStringList& arguments) |
| 73 | { |
| 74 | VcsJob* job = m_plugin->gitStash(m_dir, arguments, OutputJob::Verbose); |
| 75 | connect(job, &VcsJob::result, this, &StashManagerDialog::accept); |
| 76 | |
| 77 | setEnabled(false); |
| 78 | |
| 79 | ICore::self()->runController()->registerJob(job); |
| 80 | } |
| 81 | |
| 82 | void StashManagerDialog::showStash() |
| 83 | { |
nothing calls this directly
no test coverage detected