From 0a533f700df620bf4b59c75239db70e62712fad5 Mon Sep 17 00:00:00 2001 From: henry Date: Tue, 8 Dec 2009 15:04:44 +0000 Subject: [PATCH] Corrected the name for the source doc file created by the -srcDoc option. --- src/OpenFOAM/global/argList/argList.C | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/OpenFOAM/global/argList/argList.C b/src/OpenFOAM/global/argList/argList.C index 0e3d05b72b..4b4ec50cec 100644 --- a/src/OpenFOAM/global/argList/argList.C +++ b/src/OpenFOAM/global/argList/argList.C @@ -827,12 +827,12 @@ void Foam::argList::displayDoc(bool source) const List docDirs(docDict.lookup("doxyDocDirs")); List docExts(docDict.lookup("doxySourceFileExts")); - // for source code: change foo_8C.html to foo_8C-source.html + // for source code: change foo_8C.html to foo_8C_source.html if (source) { forAll(docExts, extI) { - docExts[extI].replace(".", "-source."); + docExts[extI].replace(".", "_source."); } }