From fab854a10f358c15a69291a59388ea0c184bce20 Mon Sep 17 00:00:00 2001 From: albert-github Date: Sat, 23 Jan 2016 17:58:43 +0100 Subject: 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) --- src/pagedef.cpp | 3 +-- 1 file changed, 1 insertion(+), 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; } -- cgit v0.12