Tidy up some code to keep SonarQube happy.

This commit is contained in:
Akshay Joshi
2020-06-15 12:12:19 +01:00
committed by Dave Page
parent 18277543b6
commit a23fad0ba8
12 changed files with 55 additions and 86 deletions

View File

@@ -13,16 +13,12 @@
#include "ui_ConfigWindow.h"
ConfigWindow::ConfigWindow(QWidget *parent) :
QDialog(parent),
ui(new Ui::ConfigWindow)
QDialog(parent)
{
ui = new Ui::ConfigWindow;
ui->setupUi(this);
}
ConfigWindow::~ConfigWindow()
{
delete ui;
}
void ConfigWindow::on_buttonBox_accepted()
{