aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken2/ApiExtractor/typedatabase.h
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2017-09-14 09:59:27 +0200
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2017-09-15 08:34:33 +0000
commite4e1027d382eef3552ebb4c6ec6bc94ecb4068c0 (patch)
tree35f743bd523d38afadd68655a96458110c110aac /sources/shiboken2/ApiExtractor/typedatabase.h
parent09d9cc162e89498d1e6424420ab288b4fba8ed6f (diff)
Typesystem parser: Look up external injected code in typesystem path
Make TypeDatabase::modifiedTypesystemFilepath() public and add parameter preventing it from stripping the path so that it can handle 'glue/snippet.cpp' correctly. This removes the need to run shiboken with the working directory set to the type system file path in order to find the external injected code snippets for documentation generation. Task-number: PYSIDE-363 Change-Id: Ic61cc1d1187e326e5255b29759a9d42e27ebd8d4 Reviewed-by: Christian Tismer <tismer@stackless.com>
Diffstat (limited to 'sources/shiboken2/ApiExtractor/typedatabase.h')
-rw-r--r--sources/shiboken2/ApiExtractor/typedatabase.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/sources/shiboken2/ApiExtractor/typedatabase.h b/sources/shiboken2/ApiExtractor/typedatabase.h
index 603a43ba4..63f4cc73d 100644
--- a/sources/shiboken2/ApiExtractor/typedatabase.h
+++ b/sources/shiboken2/ApiExtractor/typedatabase.h
@@ -154,12 +154,13 @@ public:
void setDropTypeEntries(QStringList dropTypeEntries);
+ QString modifiedTypesystemFilepath(const QString &tsFile, bool stripPath = true) const;
+
#ifndef QT_NO_DEBUG_STREAM
void formatDebug(QDebug &d) const;
#endif
private:
TypeEntryList findTypes(const QString &name) const;
- QString modifiedTypesystemFilepath(const QString &tsFile) const;
bool m_suppressWarnings;
TypeEntryHash m_entries;