Skip to content

Commit 0f8f885

Browse files
authored
Merge pull request doxygen#11907 from albert-github/feature/bug_file_version
Inconsistency in representing file version
2 parents cb94800 + ff281eb commit 0f8f885

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/filedef.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -885,7 +885,7 @@ void FileDefImpl::writeDocumentation(OutputList &ol)
885885
QCString versionTitle;
886886
if (!m_fileVersion.isEmpty())
887887
{
888-
versionTitle=("("+m_fileVersion+")");
888+
versionTitle=" ("+m_fileVersion+")";
889889
}
890890
QCString title = m_docname+versionTitle;
891891
QCString pageTitle;
@@ -1158,7 +1158,7 @@ void FileDefImpl::writeSourceHeader(OutputList &ol)
11581158
QCString title = m_docname;
11591159
if (!m_fileVersion.isEmpty())
11601160
{
1161-
title+=(" ("+m_fileVersion+")");
1161+
title+=" ("+m_fileVersion+")";
11621162
}
11631163
QCString pageTitle = theTranslator->trSourceFile(title);
11641164
ol.disable(OutputType::Man);

0 commit comments

Comments
 (0)