no message

This commit is contained in:
2024-10-16 19:40:55 +03:00
parent d01dab21b2
commit 9dc4922b89
21 changed files with 108 additions and 131 deletions

View File

@@ -43,6 +43,10 @@ public class MakefilesDBTable extends iDBTable<Makefile> {
protected void AdditionalInitColumns() {
columns.get(0).setVisible(false);
}
@Override
public boolean hasCheckBox() {
return true;
}
};
}
@Override
@@ -56,11 +60,11 @@ public class MakefilesDBTable extends iDBTable<Makefile> {
@Override
public Object getFieldAt(Makefile object, int columnIndex) {
switch (columnIndex) {
case 1:
return object.getCompilerDescription();
case 2:
return object.command;
return object.getCompilerDescription();
case 3:
return object.command;
case 4:
return object.flags;
default:
return null;