Skip to content

Commit 86a8b2a

Browse files
committed
Fixing duplicate detection.
1 parent 37cfd74 commit 86a8b2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doxygen.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ bool Doxygen::createDocumentation(const DoxygenSettingsStruct &DoxySettings, Cor
162162
QString text(editorWidget->document()->toPlainText());
163163
QStringList lines(text.split(QRegExp("\n|\r\n|\r")));
164164

165-
for (int i= 1; i <= 3; i++)
165+
for (int i= 1; i <= 5; i++)
166166
{
167167
int prevLine = lastLine - i;
168168
if (prevLine < 0) break;

0 commit comments

Comments
 (0)