FIlename is now remembered and used by save. Save as added.
This commit is contained in:
parent
35932e7a8d
commit
69ac154b07
11 changed files with 539 additions and 169 deletions
14
querytab.cpp
Normal file
14
querytab.cpp
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
#include "querytab.h"
|
||||
#include "ui_querytab.h"
|
||||
|
||||
QueryTab::QueryTab(QWidget *parent) :
|
||||
QWidget(parent),
|
||||
ui(new Ui::QueryTab)
|
||||
{
|
||||
ui->setupUi(this);
|
||||
}
|
||||
|
||||
QueryTab::~QueryTab()
|
||||
{
|
||||
delete ui;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue