| 701 | } |
| 702 | |
| 703 | void WorkspaceWidgetPrivate::checkFileState() |
| 704 | { |
| 705 | for (const auto &file : removedFileList) { |
| 706 | if (!QFile::exists(file)) |
| 707 | continue; |
| 708 | |
| 709 | removedFileList.removeOne(file); |
| 710 | Inotify::globalInstance()->addPath(file); |
| 711 | modifiedFileList.append(file); |
| 712 | } |
| 713 | |
| 714 | handleFileChanged(); |
| 715 | handleFileRemoved(); |
| 716 | } |
| 717 | |
| 718 | void WorkspaceWidgetPrivate::onSplitRequested(Qt::Orientation ori, const QString &fileName) |
| 719 | { |