diff options
author | albert-github <albert.tests@gmail.com> | 2016-01-23 16:58:43 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2016-01-23 16:58:43 (GMT) |
commit | fab854a10f358c15a69291a59388ea0c184bce20 (patch) | |
tree | c6022e37d15b45ad6b21394a562371874eb85410 | |
parent | a2cc34990be1b4bf9246d18eb5e7fdf2b28ea69b (diff) | |
download | Doxygen-fab854a10f358c15a69291a59388ea0c184bce20.zip Doxygen-fab854a10f358c15a69291a59388ea0c184bce20.tar.gz Doxygen-fab854a10f358c15a69291a59388ea0c184bce20.tar.bz2 |
Bug 760970 - CASE_SENSE_NAMES ignored
In case SHORT_NAMES was not selected the page bane was used as fileName in its bare for, this is a regression of "Bug 755080 - xrefitem link to list incorrect when using SHORT_NAMES (https://bugzilla.gnome.org/show_bug.cgi?id=755080 https://github.com/doxygen/doxygen/commit/af5c5b37c5464afb6a2df71edf6f9e82ece75187)
(We use ::convertNameToFile to get the routine from util.cpp and not from definition)
-rw-r--r-- | src/pagedef.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/pagedef.cpp b/src/pagedef.cpp index 5274ad6..1abcb0d 100644 --- a/src/pagedef.cpp +++ b/src/pagedef.cpp @@ -34,8 +34,7 @@ PageDef::PageDef(const char *f,int l,const char *n, m_subPageDict = new PageSDict(7); m_pageScope = 0; m_nestingLevel = 0; - static bool shortNames = Config_getBool(SHORT_NAMES); - m_fileName = shortNames ? convertNameToFile(n) : QCString(n); + m_fileName = ::convertNameToFile(n,FALSE,TRUE); m_showToc = FALSE; } |