Skip to content

Commit

Permalink
Fixing duplicate detection.
Browse files Browse the repository at this point in the history
  • Loading branch information
fpoussin committed Dec 10, 2015
1 parent 37cfd74 commit 86a8b2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doxygen.cpp
Expand Up @@ -162,7 +162,7 @@ bool Doxygen::createDocumentation(const DoxygenSettingsStruct &DoxySettings, Cor
QString text(editorWidget->document()->toPlainText());
QStringList lines(text.split(QRegExp("\n|\r\n|\r")));

for (int i= 1; i <= 3; i++)
for (int i= 1; i <= 5; i++)
{
int prevLine = lastLine - i;
if (prevLine < 0) break;
Expand Down

0 comments on commit 86a8b2a

Please sign in to comment.