diff --git a/cli/cmdlineparser.cpp b/cli/cmdlineparser.cpp index dd750199e..e699e4a5e 100644 --- a/cli/cmdlineparser.cpp +++ b/cli/cmdlineparser.cpp @@ -147,7 +147,7 @@ bool CmdLineParser::ParseFromArgs(int argc, const char* const argv[]) CppCheckExecutor::setExceptionOutput(exceptionOutfilename); } - // Inconclusive checking (still in testing phase) + // Inconclusive checking else if (std::strcmp(argv[i], "--inconclusive") == 0) _settings->inconclusive = true; @@ -333,7 +333,7 @@ bool CmdLineParser::ParseFromArgs(int argc, const char* const argv[]) else if (std::strcmp(argv[i], "-q") == 0 || std::strcmp(argv[i], "--quiet") == 0) _settings->quiet = true; - // Append userdefined code to checked source code + // Append user-defined code to checked source code else if (std::strncmp(argv[i], "--append=", 9) == 0) { const std::string filename = 9 + argv[i]; if (!_settings->append(filename)) { diff --git a/gui/mainwindow.cpp b/gui/mainwindow.cpp index 064e6f567..b02930de7 100644 --- a/gui/mainwindow.cpp +++ b/gui/mainwindow.cpp @@ -647,7 +647,7 @@ Settings MainWindow::GetCppcheckSettings() result.addEnabled("missingInclude"); result.debug = false; result.debugwarnings = mSettings->value(SETTINGS_SHOW_DEBUG_WARNINGS, false).toBool(); - result._errorsOnly = false; + result.quiet = false; result._verbose = true; result._force = mSettings->value(SETTINGS_CHECK_FORCE, 1).toBool(); result._xml = false;