Removed the acl field from several Pg* classes as the acl is now stored in the PgServerObject base class they inherit from.
This commit is contained in:
parent
aaa05f64ef
commit
93687df959
12 changed files with 30 additions and 30 deletions
|
|
@ -141,7 +141,7 @@ QVariant DatabasesTableModel::getData(const QModelIndex &index) const
|
|||
v = db.tablespace;
|
||||
break;
|
||||
case AclCol:
|
||||
v = db.acl;
|
||||
v = db.aclString();
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -143,7 +143,7 @@ QVariant TablesTableModel::getData(const QModelIndex &index) const
|
|||
case OwnerCol: return t.ownerName();
|
||||
case TablespaceCol: return getTablespaceDisplayString(*m_catalog, t.tablespace);
|
||||
case OptionsCol: break;
|
||||
case AclCol: return t.acl;
|
||||
case AclCol: return t.aclString();
|
||||
}
|
||||
|
||||
return QVariant();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue