mirror of
https://github.com/sqlitebrowser/sqlitebrowser.git
synced 2026-01-20 11:00:44 -06:00
Fix view updating after remove field in edittable dialog
rename the FieldList typedef to FieldVector use a object instead of a table pointer in edittable dialog
This commit is contained in:
@@ -24,7 +24,7 @@ void TestTable::sqlOutput()
|
||||
tt.addField(f);
|
||||
tt.addField(FieldPtr(new Field("car", "text")));
|
||||
tt.addField(fkm);
|
||||
FieldList pk;
|
||||
FieldVector pk;
|
||||
pk.append(f);
|
||||
pk.append(fkm);
|
||||
tt.setPrimaryKey(pk);
|
||||
|
||||
Reference in New Issue
Block a user