GUI: Disable checking unused functions.
Implements ticket #443 (Remove checking of unused functions from GUI) https://sourceforge.net/apps/trac/cppcheck/ticket/443 See also ticket #434 https://sourceforge.net/apps/trac/cppcheck/ticket/434
This commit is contained in:
parent
7ec8e2396f
commit
64f88f147c
|
@ -332,7 +332,7 @@ Settings MainWindow::GetCppcheckSettings()
|
|||
result._verbose = true;
|
||||
result._force = mSettings.value(tr("Check force"), 1).toBool();
|
||||
result._xml = false;
|
||||
result._unusedFunctions = true;
|
||||
result._unusedFunctions = false;
|
||||
result._security = true;
|
||||
result._jobs = mSettings.value(tr("Check threads"), 1).toInt();
|
||||
|
||||
|
|
Loading…
Reference in New Issue