GUI: Fix bug that same defines were added to list several times.

This commit is contained in:
Kimmo Varis 2010-08-21 22:59:55 +03:00
parent dbf097326d
commit f2e3090a83
1 changed files with 8 additions and 9 deletions

View File

@ -349,7 +349,7 @@ Settings MainWindow::GetCppcheckSettings()
if (!incdir.endsWith("/"))
incdir += "/";
result._includePaths.push_back(incdir.toStdString());
}
QStringList defines = pfile->GetDefines();
QString define;
foreach(define, defines)
@ -359,7 +359,6 @@ Settings MainWindow::GetCppcheckSettings()
result.userDefines += define.toStdString();
}
}
}
result._debug = false;
result._checkCodingStyle = true;