diff options
author | Dimitri van Heesch <doxygen@gmail.com> | 2018-12-31 16:53:20 (GMT) |
---|---|---|
committer | Dimitri van Heesch <doxygen@gmail.com> | 2018-12-31 16:53:20 (GMT) |
commit | 7b4c4577ef836deada725ffb76ed1248b52e9cda (patch) | |
tree | db7867595eaa3f8b39f96ad92b6a322673adbbfc /src/xmlgen.cpp | |
parent | 450afb801fe3aa0a9c820070f4b0f00f09e984ea (diff) | |
download | Doxygen-7b4c4577ef836deada725ffb76ed1248b52e9cda.zip Doxygen-7b4c4577ef836deada725ffb76ed1248b52e9cda.tar.gz Doxygen-7b4c4577ef836deada725ffb76ed1248b52e9cda.tar.bz2 |
Moved check for page having a title to hasTitle() method
Diffstat (limited to 'src/xmlgen.cpp')
-rw-r--r-- | src/xmlgen.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xmlgen.cpp b/src/xmlgen.cpp index 033e611..8b8e648 100644 --- a/src/xmlgen.cpp +++ b/src/xmlgen.cpp @@ -1797,11 +1797,11 @@ static void generateXMLForPage(PageDef *pd,FTextStream &ti,bool isExample) if (pd==Doxygen::mainPage) // main page is special { QCString title; - if (!pd->title().isEmpty() && pd->title().lower()!="notitle") + if (mainPageHasTitle()) { title = filterTitle(convertCharEntitiesToUTF8(Doxygen::mainPage->title())); } - else + else { title = Config_getString(PROJECT_NAME); } |