| 423 | } |
| 424 | |
| 425 | Document::PrintError TextDocumentGenerator::print(QPrinter &printer) |
| 426 | { |
| 427 | Q_D(TextDocumentGenerator); |
| 428 | if (!d->mDocument) { |
| 429 | return Document::UnknownPrintError; |
| 430 | } |
| 431 | |
| 432 | d->mDocument->print(&printer); |
| 433 | |
| 434 | return Document::NoPrintError; |
| 435 | } |
| 436 | |
| 437 | Okular::DocumentInfo TextDocumentGenerator::generateDocumentInfo(const QSet<DocumentInfo::Key> & /*keys*/) const |
| 438 | { |