diff options
author | albert-github <albert.tests@gmail.com> | 2013-12-31 18:41:16 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2013-12-31 18:41:16 (GMT) |
commit | d5d34325fb9bed776cf2b4facc0c341f701e780b (patch) | |
tree | bdda7f15214a9c2ca01960770752efd027e84850 /src/filedef.cpp | |
parent | d5fb69739a1b2facf32a63ca94c12d097f8278cc (diff) | |
download | Doxygen-d5d34325fb9bed776cf2b4facc0c341f701e780b.zip Doxygen-d5d34325fb9bed776cf2b4facc0c341f701e780b.tar.gz Doxygen-d5d34325fb9bed776cf2b4facc0c341f701e780b.tar.bz2 |
Bug 436885 - c-source and h-source missing for latex
Original title does not cover problem anymore. Problem has evolved to that when clicking on the name for the source file (in LaTeX) a jump to the beginning of the document was made. This problem is fixed with this patch.
Diffstat (limited to 'src/filedef.cpp')
-rw-r--r-- | src/filedef.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/filedef.cpp b/src/filedef.cpp index 543be1d..8a16859 100644 --- a/src/filedef.cpp +++ b/src/filedef.cpp @@ -836,9 +836,9 @@ void FileDef::writeSource(OutputList &ol,bool sameTu,QStrList &filesInSameTu) getDirDef()->writeNavigationPath(ol); ol.endQuickIndices(); } - startTitle(ol,getOutputFileBase()); + startTitle(ol,getSourceFileBase()); ol.parseText(name()); - endTitle(ol,getOutputFileBase(),title); + endTitle(ol,getSourceFileBase(),title); } else { |