Renamed PgsqlDatabaseCatalogue to PgDatabaseCatalogue so name is consistend
with other related classes.
This commit is contained in:
parent
52442a145d
commit
243f1c0a42
21 changed files with 491 additions and 61 deletions
|
|
@ -1,11 +1,11 @@
|
|||
#ifndef OPENDATABASE_H
|
||||
#ifndef OPENDATABASE_H
|
||||
#define OPENDATABASE_H
|
||||
|
||||
#include <QObject>
|
||||
#include "ConnectionConfig.h"
|
||||
#include "Expected.h"
|
||||
|
||||
class PgsqlDatabaseCatalogue;
|
||||
class PgDatabaseCatalogue;
|
||||
class TypeSelectionItemModel;
|
||||
|
||||
/** Instances of this class represent a single database on which atleast one
|
||||
|
|
@ -21,7 +21,7 @@ public:
|
|||
OpenDatabase& operator=(const OpenDatabase &) = delete;
|
||||
~OpenDatabase();
|
||||
|
||||
PgsqlDatabaseCatalogue* catalogue();
|
||||
PgDatabaseCatalogue* catalogue();
|
||||
TypeSelectionItemModel* typeSelectionModel();
|
||||
signals:
|
||||
|
||||
|
|
@ -29,7 +29,7 @@ public slots:
|
|||
|
||||
private:
|
||||
ConnectionConfig m_config;
|
||||
PgsqlDatabaseCatalogue *m_catalogue;
|
||||
PgDatabaseCatalogue *m_catalogue;
|
||||
|
||||
TypeSelectionItemModel *m_typeSelectionModel = nullptr;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue