| 1433 | } |
| 1434 | |
| 1435 | QString DocumentData::filepath(bool check) const { |
| 1436 | return (check && _location.name().isEmpty()) |
| 1437 | ? QString() |
| 1438 | : location(check).name(); |
| 1439 | } |
| 1440 | |
| 1441 | bool DocumentData::saveFromData() { |
| 1442 | return !filepath(true).isEmpty() || saveFromDataChecked(); |
no test coverage detected