diff options
Diffstat (limited to 'sources/shiboken6/ApiExtractor/doxygenparser.cpp')
| -rw-r--r-- | sources/shiboken6/ApiExtractor/doxygenparser.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sources/shiboken6/ApiExtractor/doxygenparser.cpp b/sources/shiboken6/ApiExtractor/doxygenparser.cpp index cb96cdf46..e3742cab0 100644 --- a/sources/shiboken6/ApiExtractor/doxygenparser.cpp +++ b/sources/shiboken6/ApiExtractor/doxygenparser.cpp @@ -197,8 +197,8 @@ QString DoxygenParser::fillDocumentation(const AbstractMetaClassPtr &metaClass) return doxyFilePath; } -Documentation DoxygenParser::retrieveModuleDocumentation(const QString& name){ - +ModuleDocumentation DoxygenParser::retrieveModuleDocumentation(const QString &name) +{ QString sourceFile = documentationDataDirectory() + u"/indexpage.xml"_s; if (!QFile::exists(sourceFile)) { @@ -218,5 +218,5 @@ Documentation DoxygenParser::retrieveModuleDocumentation(const QString& name){ // Module documentation QString query = u"/doxygen/compounddef/detaileddescription"_s; const QString doc = getDocumentation(xquery, query, DocModificationList()); - return Documentation(doc, {}, sourceFile); + return {Documentation(doc, {}, sourceFile), {}}; } |
