| 268 | } |
| 269 | |
| 270 | TextDocumentGenerator::TextDocumentGenerator(TextDocumentConverter *converter, const QString &configName, QObject *parent, const QVariantList &args) |
| 271 | : Okular::Generator(*new TextDocumentGeneratorPrivate(converter), parent, args) |
| 272 | { |
| 273 | Q_D(TextDocumentGenerator); |
| 274 | d->mGeneralSettings = new TextDocumentSettings(configName, this); |
| 275 | |
| 276 | d->initializeGenerator(); |
| 277 | } |
| 278 | |
| 279 | TextDocumentGenerator::~TextDocumentGenerator() |
| 280 | { |
nothing calls this directly
no test coverage detected