Renamed MainWindow to DatabaseWindow so the name tells us the functionality provided by the window.

MainWindow was really a bad name as the app doesn't have a main window.
This commit is contained in:
eelke 2018-12-28 12:55:11 +01:00
parent 437736a023
commit 69473d65d2
10 changed files with 58 additions and 55 deletions

View file

@ -10,7 +10,7 @@
#include "ConstraintModel.h"
#include "IconColumnDelegate.h"
#include "IndexModel.h"
#include "MainWindow.h"
#include "DatabaseWindow.h"
#include "PgLabItemDelegate.h"
#include "PropertiesPage.h"
#include "ResultTableModelUtil.h"
@ -23,7 +23,7 @@
#include <QStringBuilder>
#include <unordered_set>
TablesPage::TablesPage(MainWindow *parent)
TablesPage::TablesPage(DatabaseWindow *parent)
: QWidget(parent)
, ui(new Ui::TablesPage)
, m_window(parent)