| 521 | } |
| 522 | |
| 523 | QStringList TabWidget::modifiedFiles() const |
| 524 | { |
| 525 | QStringList files; |
| 526 | for (auto editor : d->editorMng.values()) { |
| 527 | if (!editor->isModified()) |
| 528 | continue; |
| 529 | |
| 530 | files << editor->getFile(); |
| 531 | } |
| 532 | |
| 533 | return files; |
| 534 | } |
| 535 | |
| 536 | QStringList TabWidget::openedFiles() const |
| 537 | { |
nothing calls this directly
no test coverage detected