From 64f88f147c311dfae736bc6916b6ee0909db1f36 Mon Sep 17 00:00:00 2001 From: Kimmo Varis Date: Sat, 27 Jun 2009 10:30:32 +0300 Subject: [PATCH] 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 --- gui/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/mainwindow.cpp b/gui/mainwindow.cpp index 4b2a33c98..fda4edd36 100644 --- a/gui/mainwindow.cpp +++ b/gui/mainwindow.cpp @@ -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();