More aggressive saving of changes to the connections. Also remove connection

now removes the connection from the file.
This commit is contained in:
Eelke Klein 2017-01-18 20:48:31 +01:00
parent ea30dd9c0e
commit 163bb1d513
11 changed files with 258 additions and 8 deletions

14
databaseoverviewform.cpp Normal file
View file

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