| 655 | } |
| 656 | |
| 657 | void TabWidget::saveAll() const |
| 658 | { |
| 659 | for (auto editor : d->editorMng.values()) { |
| 660 | Inotify::globalInstance()->removePath(editor->getFile()); |
| 661 | editor->save(); |
| 662 | Inotify::globalInstance()->addPath(editor->getFile()); |
| 663 | } |
| 664 | } |
| 665 | |
| 666 | bool TabWidget::saveAs(const QString &from, const QString &to) |
| 667 | { |
no test coverage detected