diff options
| author | Simon Rettberg | 2015-08-27 15:28:29 +0200 |
|---|---|---|
| committer | Simon Rettberg | 2015-08-27 15:28:29 +0200 |
| commit | c8d09c15250e0c991395bfd19649199d2b478c73 (patch) | |
| tree | b314f4be6ed39595fd1b183318236844e7a1f0b6 /dozentenmodul/src/main/java | |
| parent | [client] TableColumnAdjuster: Use weighted scaling, so one very wide entry wo... (diff) | |
| download | tutor-module-c8d09c15250e0c991395bfd19649199d2b478c73.tar.gz tutor-module-c8d09c15250e0c991395bfd19649199d2b478c73.tar.xz tutor-module-c8d09c15250e0c991395bfd19649199d2b478c73.zip | |
[client] Fix: Set OS column type to Integer
Diffstat (limited to 'dozentenmodul/src/main/java')
| -rw-r--r-- | dozentenmodul/src/main/java/org/openslx/dozmod/gui/control/table/ImageTable.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dozentenmodul/src/main/java/org/openslx/dozmod/gui/control/table/ImageTable.java b/dozentenmodul/src/main/java/org/openslx/dozmod/gui/control/table/ImageTable.java index 8af9a291..4293916e 100644 --- a/dozentenmodul/src/main/java/org/openslx/dozmod/gui/control/table/ImageTable.java +++ b/dozentenmodul/src/main/java/org/openslx/dozmod/gui/control/table/ImageTable.java @@ -16,7 +16,7 @@ public class ImageTable extends ListTable<ImageSummaryRead> { public static final ListTableColumn COL_SIZE = new ListTableColumn("Größe", Long.class); public static final ListTableColumn COL_LASTCHANGE = new ListTableColumn("Geändert", Long.class); public static final ListTableColumn COL_OWNER = new ListTableColumn("Besitzer", Sorters.userNameById); - public static final ListTableColumn COL_OS = new ListTableColumn("OS", Sorters.osNameById); + public static final ListTableColumn COL_OS = new ListTableColumn("OS", Integer.class, Sorters.osNameById); public static final ListTableColumn COL_NAME = new ListTableColumn("Name"); public ImageTable() { |
