Skip to content

Commit 73022bc

Browse files
committed
Incorrect doxygen help information
The `doxygen --help` states: ``` 4) Use doxygen to generate a template file controlling the layout of the generated documentation: D:\Programs\Doxygen\fork\doxygen\build_windows_nmake_v2017\bin\doxygen.exe -l [layoutFileName] In case layoutFileName is omitted layoutFileName.xml will be used as filename. ``` the last line is incorrect, this has to be: ``` In case layoutFileName is omitted DoxygenLayout.xml will be used as filename. ```
1 parent 0eaf320 commit 73022bc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

doc/doxygen.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ doxygen [configName]
2323
.IP
2424
doxygen -l [layoutFileName]
2525
.IP
26-
In case layoutFileName is omitted layoutFileName.xml will be used as filename.
26+
In case layoutFileName is omitted DoxygenLayout.xml will be used as filename.
2727
If - is used for layoutFileName doxygen will write to standard output.
2828
.TP
2929
5) Use doxygen to generate a template style sheet file for RTF, HTML or Latex.

src/doxygen.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10618,7 +10618,7 @@ static void usage(const QCString &name,const QCString &versionString)
1061810618
msg("4) Use doxygen to generate a template file controlling the layout of the\n");
1061910619
msg(" generated documentation:\n");
1062010620
msg(" %s -l [layoutFileName]\n\n",qPrint(name));
10621-
msg(" In case layoutFileName is omitted layoutFileName.xml will be used as filename.\n");
10621+
msg(" In case layoutFileName is omitted DoxygenLayout.xml will be used as filename.\n");
1062210622
msg(" If - is used for layoutFileName doxygen will write to standard output.\n\n");
1062310623
msg("5) Use doxygen to generate a template style sheet file for RTF, HTML or Latex.\n");
1062410624
msg(" RTF: %s -w rtf styleSheetFile\n",qPrint(name));

0 commit comments

Comments
 (0)