| 909 | } |
| 910 | |
| 911 | SaveInterface *DocumentPrivate::generatorSave(GeneratorInfo &info) |
| 912 | { |
| 913 | if (info.saveChecked) { |
| 914 | return info.save; |
| 915 | } |
| 916 | |
| 917 | info.save = qobject_cast<Okular::SaveInterface *>(info.generator); |
| 918 | info.saveChecked = true; |
| 919 | return info.save; |
| 920 | } |
| 921 | |
| 922 | Document::OpenResult DocumentPrivate::openDocumentInternal(const KPluginMetaData &offer, bool isstdin, const QString &docFile, const QByteArray &filedata, const QString &password) |
| 923 | { |
no outgoing calls
no test coverage detected