| 817 | } |
| 818 | |
| 819 | bool DocumentPrivate::openRelativeFile(const QString &fileName) |
| 820 | { |
| 821 | const QUrl newUrl = giveAbsoluteUrl(fileName); |
| 822 | if (newUrl.isEmpty()) { |
| 823 | return false; |
| 824 | } |
| 825 | |
| 826 | qCDebug(OkularCoreDebug).nospace() << "openRelativeFile: '" << newUrl << "'"; |
| 827 | |
| 828 | Q_EMIT m_parent->openUrl(newUrl); |
| 829 | return m_url == newUrl; |
| 830 | } |
| 831 | |
| 832 | Generator *DocumentPrivate::loadGeneratorLibrary(const KPluginMetaData &service) |
| 833 | { |