pgLab/databaseoverviewform.cpp
Eelke Klein 163bb1d513 More aggressive saving of changes to the connections. Also remove connection
now removes the connection from the file.
2017-01-18 20:48:31 +01:00

14 lines
273 B
C++

#include "databaseoverviewform.h"
#include "ui_databaseoverviewform.h"
DatabaseOverviewForm::DatabaseOverviewForm(QWidget *parent) :
QWidget(parent),
ui(new Ui::DatabaseOverviewForm)
{
ui->setupUi(this);
}
DatabaseOverviewForm::~DatabaseOverviewForm()
{
delete ui;
}