mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Tidy up some code to keep SonarQube happy.
This commit is contained in:
@@ -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()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user