From bb5e531c7f9af29ac00da6bcceab2bf05ffe57af Mon Sep 17 00:00:00 2001 From: Kimmo Varis Date: Sun, 4 Sep 2011 21:26:31 +0300 Subject: [PATCH] GUI: Enable performance- and portability checks. The CLI/LIB change earlier added own enable-flag for performance- and portability-checks. This commit updates GUI to also enable those new enable-flags. --- gui/mainwindow.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gui/mainwindow.cpp b/gui/mainwindow.cpp index 6236937bc..f16090e37 100644 --- a/gui/mainwindow.cpp +++ b/gui/mainwindow.cpp @@ -475,6 +475,8 @@ Settings MainWindow::GetCppcheckSettings() } result.addEnabled("style"); + result.addEnabled("performance"); + result.addEnabled("portability"); result.addEnabled("information"); result.addEnabled("missingInclude"); result.debug = false;