Skip to content

Commit 9ae426b

Browse files
author
Dimitri van Heesch
committed
Merge pull request doxygen#446 from albert-github/feature/bug_760970
Bug 760970 - CASE_SENSE_NAMES ignored
2 parents a2cc349 + fab854a commit 9ae426b

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)