From 22db22c6b1625f024ba49d509bef42cff3d76228 Mon Sep 17 00:00:00 2001 From: eelke Date: Fri, 29 Dec 2017 10:26:51 +0100 Subject: [PATCH] Removed unused DatabaseInspectorWidget (had no code only ui design) --- pglab/DatabaseInspectorWidget.cpp | 14 ------ pglab/DatabaseInspectorWidget.h | 22 --------- pglab/DatabaseInspectorWidget.ui | 80 ------------------------------- pglab/pglab.pro | 3 -- 4 files changed, 119 deletions(-) delete mode 100644 pglab/DatabaseInspectorWidget.cpp delete mode 100644 pglab/DatabaseInspectorWidget.h delete mode 100644 pglab/DatabaseInspectorWidget.ui diff --git a/pglab/DatabaseInspectorWidget.cpp b/pglab/DatabaseInspectorWidget.cpp deleted file mode 100644 index aa0be11..0000000 --- a/pglab/DatabaseInspectorWidget.cpp +++ /dev/null @@ -1,14 +0,0 @@ -#include "DatabaseInspectorWidget.h" -#include "ui_DatabaseInspectorWidget.h" - -DatabaseInspectorWidget::DatabaseInspectorWidget(QWidget *parent) : - QWidget(parent), - ui(new Ui::DatabaseInspectorWidget) -{ - ui->setupUi(this); -} - -DatabaseInspectorWidget::~DatabaseInspectorWidget() -{ - delete ui; -} diff --git a/pglab/DatabaseInspectorWidget.h b/pglab/DatabaseInspectorWidget.h deleted file mode 100644 index 98f810f..0000000 --- a/pglab/DatabaseInspectorWidget.h +++ /dev/null @@ -1,22 +0,0 @@ -#ifndef DATABASEINSPECTORWIDGET_H -#define DATABASEINSPECTORWIDGET_H - -#include - -namespace Ui { -class DatabaseInspectorWidget; -} - -class DatabaseInspectorWidget : public QWidget -{ - Q_OBJECT - -public: - explicit DatabaseInspectorWidget(QWidget *parent = 0); - ~DatabaseInspectorWidget(); - -private: - Ui::DatabaseInspectorWidget *ui; -}; - -#endif // DATABASEINSPECTORWIDGET_H diff --git a/pglab/DatabaseInspectorWidget.ui b/pglab/DatabaseInspectorWidget.ui deleted file mode 100644 index 74e83a1..0000000 --- a/pglab/DatabaseInspectorWidget.ui +++ /dev/null @@ -1,80 +0,0 @@ - - - DatabaseInspectorWidget - - - - 0 - 0 - 599 - 536 - - - - Form - - - - - - QFrame::StyledPanel - - - QFrame::Raised - - - - - - Schema filter - - - - - - - - - - - - - 0 - - - - Tables - - - - - Sequences - - - - - Functions - - - - - Domains - - - - - Collations - - - - - FTS - - - - - - - - - diff --git a/pglab/pglab.pro b/pglab/pglab.pro index 72b46e7..34f192d 100644 --- a/pglab/pglab.pro +++ b/pglab/pglab.pro @@ -39,7 +39,6 @@ SOURCES += main.cpp\ BackupRestore.cpp \ QueryTab.cpp \ stopwatch.cpp \ - DatabaseInspectorWidget.cpp \ TuplesResultWidget.cpp \ BackupDialog.cpp \ TypeSelectionItemModel.cpp \ @@ -74,7 +73,6 @@ HEADERS += \ ConnectionListModel.h \ QueryTab.h \ stopwatch.h \ - DatabaseInspectorWidget.h \ TuplesResultWidget.h \ BackupDialog.h \ TypeSelectionItemModel.h \ @@ -103,7 +101,6 @@ HEADERS += \ FORMS += mainwindow.ui \ ConnectionManagerWindow.ui \ CreateDatabaseDialog.ui \ - DatabaseInspectorWidget.ui \ TuplesResultWidget.ui \ QueryTab.ui \ BackupDialog.ui \