summaryrefslogtreecommitdiffstats
path: root/src/sqlite3gen.cpp
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2020-02-22 11:28:13 (GMT)
committeralbert-github <albert.tests@gmail.com>2020-02-22 11:28:13 (GMT)
commit57de6d693923b11c41d90574acb3a3b4feb0b160 (patch)
tree92582ecce4ddd47eac0ce4d03a13566e9a260cf5 /src/sqlite3gen.cpp
parentd391530e102a919d8b0a51ecb74b1815b896bc27 (diff)
downloadDoxygen-57de6d693923b11c41d90574acb3a3b4feb0b160.zip
Doxygen-57de6d693923b11c41d90574acb3a3b4feb0b160.tar.gz
Doxygen-57de6d693923b11c41d90574acb3a3b4feb0b160.tar.bz2
issue #7606 Unable to build "master" branch
regression on: ``` Commit: 1a56a39b4a97452a5c7c2d8e9d39ab28ca33dff0 [1a56a39] Commit Date: Friday, February 21, 2020 9:07:13 PM Restructure section handling ``` when sqlite3 has been enabled for the build.
Diffstat (limited to 'src/sqlite3gen.cpp')
-rw-r--r--src/sqlite3gen.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sqlite3gen.cpp b/src/sqlite3gen.cpp
index 14a73d8..1ab81fc 100644
--- a/src/sqlite3gen.cpp
+++ b/src/sqlite3gen.cpp
@@ -2486,10 +2486,10 @@ static void generateSqlite3ForPage(const PageDef *pd,bool isExample)
}
else
{
- SectionInfo *si = Doxygen::sectionDict->find(pd->name());
+ SectionInfo *si = SectionManager::instance().find(pd->name());
if (si)
{
- title = si->title;
+ title = si->title();
}
if(!title){title = pd->title();}