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

@@ -132,6 +132,10 @@ public class CompilersDBTable extends iDBTable<Compiler> {
super.ShowNoCurrentObject();
Global.mainModule.getUI().getMainWindow().getTestingWindow().ShowCurrentCompiler();
}
@Override
public boolean hasCheckBox() {
return true;
}
};
}
@Override
@@ -141,13 +145,13 @@ public class CompilersDBTable extends iDBTable<Compiler> {
@Override
public Object getFieldAt(Compiler object, int columnIndex) {
switch (columnIndex) {
case 1:
return object.description;
case 2:
return object.call_command;
return object.description;
case 3:
return object.version;
return object.call_command;
case 4:
return object.version;
case 5:
return object.revision;
}
return null;