summaryrefslogtreecommitdiffstats
path: root/src/pagedef.cpp
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2016-01-23 16:58:43 (GMT)
committeralbert-github <albert.tests@gmail.com>2016-01-23 16:58:43 (GMT)
commitfab854a10f358c15a69291a59388ea0c184bce20 (patch)
treec6022e37d15b45ad6b21394a562371874eb85410 /src/pagedef.cpp
parenta2cc34990be1b4bf9246d18eb5e7fdf2b28ea69b (diff)
downloadDoxygen-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)
Diffstat (limited to 'src/pagedef.cpp')
-rw-r--r--src/pagedef.cpp3
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;
}