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:
Kimmo Varis 2009-06-27 10:30:32 +03:00
parent 7ec8e2396f
commit 64f88f147c
1 changed files with 1 additions and 1 deletions

View File

@ -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();