| 3050 | } |
| 3051 | |
| 3052 | bool Document::canExportToText() const |
| 3053 | { |
| 3054 | if (!d->m_generator) { |
| 3055 | return false; |
| 3056 | } |
| 3057 | |
| 3058 | d->cacheExportFormats(); |
| 3059 | return !d->m_exportToText.isNull(); |
| 3060 | } |
| 3061 | |
| 3062 | bool Document::exportToText(const QString &fileName) const |
| 3063 | { |
no test coverage detected