diff options
author | Topi Reinio <[email protected]> | 2025-05-19 12:40:05 +0000 |
---|---|---|
committer | Topi Reinio <[email protected]> | 2025-05-27 09:24:40 +0000 |
commit | f704d2e8aacc2ac9fb81b1abb8a7c356e4f0155c (patch) | |
tree | b33448c159f03f8a7dfb54ad4ad52f8eebee59be | |
parent | 2964961c222ec781975223ba8407dc4e75d7430e (diff) |
Since 6.10, QDoc is capable of generating links to the declaration in
the source code for each documented C++ API entity in their `Detailed
description`.
Add the required configuration to enable this feature for Qt 5 Core
Compatibility APIs.
Change-Id: Ic88dc5e1595c19e0a82aa6797ff300638d046e8b
Reviewed-by: Paul Wicking <[email protected]>
-rw-r--r-- | src/core5/doc/qtcore5compat.qdocconf | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core5/doc/qtcore5compat.qdocconf b/src/core5/doc/qtcore5compat.qdocconf index 282946c..a39735f 100644 --- a/src/core5/doc/qtcore5compat.qdocconf +++ b/src/core5/doc/qtcore5compat.qdocconf @@ -1,5 +1,8 @@ include($QT_INSTALL_DOCS/global/qt-module-defaults.qdocconf) url.examples = "https://code.qt.io/cgit/qt/qt5compat.git/tree/examples//1?h=$QT_VER" +url.sources = "https://code.qt.io/cgit/qt/qt5compat.git/tree//1?h=$QT_VER#n\2" +# Path to the root of qt5compat (for automatic linking to source code) +url.sources.rootdir = ../../.. project = QtCore5Compat description = Qt 5 Core Compatibility APIs Documentation |