Skip to content

Commit

Permalink
Bug 760970 - CASE_SENSE_NAMES ignored
Browse files Browse the repository at this point in the history
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 af5c5b3)
(We use ::convertNameToFile to get the routine from util.cpp and not from definition)
  • Loading branch information
albert-github committed Jan 23, 2016
1 parent a2cc349 commit fab854a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/pagedef.cpp
Expand Up @@ -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;
}

Expand Down

0 comments on commit fab854a

Please sign in to comment.