Skip to content

Commit fab854a

Browse files
committed
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 doxygen@af5c5b3) (We use ::convertNameToFile to get the routine from util.cpp and not from definition)
1 parent a2cc349 commit fab854a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/pagedef.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,7 @@ PageDef::PageDef(const char *f,int l,const char *n,
3434
m_subPageDict = new PageSDict(7);
3535
m_pageScope = 0;
3636
m_nestingLevel = 0;
37-
static bool shortNames = Config_getBool(SHORT_NAMES);
38-
m_fileName = shortNames ? convertNameToFile(n) : QCString(n);
37+
m_fileName = ::convertNameToFile(n,FALSE,TRUE);
3938
m_showToc = FALSE;
4039
}
4140

0 commit comments

Comments
 (0)