diff --git a/gui/checkthread.cpp b/gui/checkthread.cpp
index c2f545546..198bb5930 100644
--- a/gui/checkthread.cpp
+++ b/gui/checkthread.cpp
@@ -310,6 +310,7 @@ QString CheckThread::getAddonPath() const
void CheckThread::parseAddonErrors(QString err, QString tool)
{
+ Q_UNUSED(tool);
QTextStream in(&err, QIODevice::ReadOnly);
while (!in.atEnd()) {
QString line = in.readLine();
diff --git a/gui/gui.qrc b/gui/gui.qrc
index 076b12f6a..00247c03d 100644
--- a/gui/gui.qrc
+++ b/gui/gui.qrc
@@ -27,5 +27,6 @@
images/go-previous.png
images/applications-development.png
images/applications-system.png
+ images/llvm-dragon.svg
diff --git a/gui/images/llvm-dragon.svg b/gui/images/llvm-dragon.svg
new file mode 100644
index 000000000..57b5903ed
--- /dev/null
+++ b/gui/images/llvm-dragon.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/gui/mainwindow.cpp b/gui/mainwindow.cpp
index 75082652f..7ac588377 100644
--- a/gui/mainwindow.cpp
+++ b/gui/mainwindow.cpp
@@ -95,6 +95,8 @@ MainWindow::MainWindow(TranslationHandler* th, QSettings* settings) :
connect(mUI.mActionShowPortability, &QAction::toggled, this, &MainWindow::showPortability);
connect(mUI.mActionShowPerformance, &QAction::toggled, this, &MainWindow::showPerformance);
connect(mUI.mActionShowInformation, &QAction::toggled, this, &MainWindow::showInformation);
+ connect(mUI.mActionShowCppcheck, &QAction::toggled, mUI.mResults, &ResultsView::showCppcheckResults);
+ connect(mUI.mActionShowClang, &QAction::toggled, mUI.mResults, &ResultsView::showClangResults);
connect(mUI.mActionCheckAll, &QAction::triggered, this, &MainWindow::checkAll);
connect(mUI.mActionUncheckAll, &QAction::triggered, this, &MainWindow::uncheckAll);
connect(mUI.mActionCollapseAll, &QAction::triggered, mUI.mResults, &ResultsView::collapseAllResults);
@@ -268,6 +270,8 @@ void MainWindow::loadSettings()
mUI.mActionShowPortability->setChecked(types->isShown(ShowTypes::ShowPortability));
mUI.mActionShowPerformance->setChecked(types->isShown(ShowTypes::ShowPerformance));
mUI.mActionShowInformation->setChecked(types->isShown(ShowTypes::ShowInformation));
+ mUI.mActionShowCppcheck->setChecked(true);
+ mUI.mActionShowClang->setChecked(true);
const bool stdCpp03 = mSettings->value(SETTINGS_STD_CPP03, false).toBool();
mUI.mActionCpp03->setChecked(stdCpp03);
diff --git a/gui/mainwindow.ui b/gui/mainwindow.ui
index 79bbfa94d..1782cdf44 100644
--- a/gui/mainwindow.ui
+++ b/gui/mainwindow.ui
@@ -62,7 +62,7 @@
0
0
640
- 20
+ 25