Need a central piece to manage the catalogue data per database to prevent loading this multiple times. MasterController is now also used to enable reopening the connection manager from a query window after the connection manager has been closed.
14 lines
217 B
C++
14 lines
217 B
C++
#include "backupdialog.h"
|
|
#include "ui_backupdialog.h"
|
|
|
|
BackupDialog::BackupDialog(QWidget *parent) :
|
|
QDialog(parent),
|
|
ui(new Ui::BackupDialog)
|
|
{
|
|
ui->setupUi(this);
|
|
}
|
|
|
|
BackupDialog::~BackupDialog()
|
|
{
|
|
delete ui;
|
|
}
|