Skip to content

Commit

Permalink
issue #9476 fatal: Cannot open 'doxygen/graph_legend.dox': No such fi…
Browse files Browse the repository at this point in the history
…le or directory

Looks like this is introduced with the commit cc42539 : Refactoring code for dot related source files
Corrected the filename in `filedef.cpp`
  • Loading branch information
albert-github committed Jul 26, 2022
1 parent d7eb8d2 commit 1b106e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/filedef.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1524,7 +1524,7 @@ void FileDefImpl::acquireFileVersion()
{
QCString vercmd = Config_getString(FILE_VERSION_FILTER);
if (!vercmd.isEmpty() && !m_filePath.isEmpty() &&
m_filePath!="generated" && m_filePath!="graph_legend")
m_filePath!="generated" && m_filePath!="graph_legend.dox")
{
msg("Version of %s : ",qPrint(m_filePath));
QCString cmd = vercmd+" \""+m_filePath+"\"";
Expand Down

0 comments on commit 1b106e6

Please sign in to comment.