| 149 | } |
| 150 | |
| 151 | void Worker::scheduleForIntegration(const QString& path) { |
| 152 | auto operation = std::make_pair(path, INTEGRATE); |
| 153 | if (!d->isDuplicate(operation)) { |
| 154 | std::cout << "Scheduling for (re-)integration: " << path.toStdString() << std::endl; |
| 155 | d->deferredOperations.push_back(operation); |
| 156 | emit startTimer(); |
| 157 | } |
| 158 | |
| 159 | } |
| 160 | |
| 161 | void Worker::scheduleForUnintegration(const QString& path) { |
| 162 | auto operation = std::make_pair(path, UNINTEGRATE); |
no test coverage detected