diff options
author | Topi Reinio <topi.reinio@qt.io> | 2020-01-03 23:10:47 +0100 |
---|---|---|
committer | Topi Reinio <topi.reinio@qt.io> | 2020-01-13 10:30:34 +0100 |
commit | ccdbf30b6ac9180ead6fc22c858b6fac112d493c (patch) | |
tree | 684348bac8eae2acffe5c78545a608bbee9c62a9 /src/qdoc/qmlcodeparser.h | |
parent | ade15563a6c7613b58201e6e05e3f67fde3f6056 (diff) | |
download | qttools-ccdbf30b6ac9180ead6fc22c858b6fac112d493c.tar.gz |
qdoc: Make Config a singleton
There is no need to pass a pointer to Config throughout
the API; the only instance of it is created in main()
so we can turn it into a singleton.
Having access to Config without API changes makes
implementation of configurable features easier.
Change-Id: Ida47e067865082dfe036a7a97f7f1ffc736db346
Reviewed-by: Paul Wicking <paul.wicking@qt.io>
Diffstat (limited to 'src/qdoc/qmlcodeparser.h')
-rw-r--r-- | src/qdoc/qmlcodeparser.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/qdoc/qmlcodeparser.h b/src/qdoc/qmlcodeparser.h index f639f2115..ca34dc111 100644 --- a/src/qdoc/qmlcodeparser.h +++ b/src/qdoc/qmlcodeparser.h @@ -45,7 +45,6 @@ QT_BEGIN_NAMESPACE -class Config; class Node; class QString; @@ -57,7 +56,7 @@ public: QmlCodeParser(); ~QmlCodeParser() override; - void initializeParser(const Config &config) override; + void initializeParser() override; void terminateParser() override; QString language() override; QStringList sourceFileNameFilter() override; |