summaryrefslogtreecommitdiffstats
path: root/dozentenmodul/src/main/java/org/openslx/dozmod/gui/control
diff options
context:
space:
mode:
authorSimon Rettberg2016-09-09 17:21:54 +0200
committerSimon Rettberg2016-09-09 17:21:54 +0200
commit6b7afc1f19b69eea8f3c9635cdf8765c15c41584 (patch)
treef104f3f82f6ed27abddee2f75c3e0a34f85cdd14 /dozentenmodul/src/main/java/org/openslx/dozmod/gui/control
parent[client] UserCache: Fix fallback to querying master server (diff)
downloadtutor-module-6b7afc1f19b69eea8f3c9635cdf8765c15c41584.tar.gz
tutor-module-6b7afc1f19b69eea8f3c9635cdf8765c15c41584.tar.xz
tutor-module-6b7afc1f19b69eea8f3c9635cdf8765c15c41584.zip
[client] Use proper sorter in ImagePublishedTable
Diffstat (limited to 'dozentenmodul/src/main/java/org/openslx/dozmod/gui/control')
-rw-r--r--dozentenmodul/src/main/java/org/openslx/dozmod/gui/control/table/ImagePublishedTable.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/dozentenmodul/src/main/java/org/openslx/dozmod/gui/control/table/ImagePublishedTable.java b/dozentenmodul/src/main/java/org/openslx/dozmod/gui/control/table/ImagePublishedTable.java
index d2e96e63..c25748c1 100644
--- a/dozentenmodul/src/main/java/org/openslx/dozmod/gui/control/table/ImagePublishedTable.java
+++ b/dozentenmodul/src/main/java/org/openslx/dozmod/gui/control/table/ImagePublishedTable.java
@@ -19,8 +19,8 @@ public class ImagePublishedTable extends ListTable<ImageSummaryRead> {
// public static final ListTableColumn COL_LASTCHANGE = new ListTableColumn("GeƤndert", Long.class);
public static final ListTableColumn COL_NAME = new ListTableColumn("Name");
public static final ListTableColumn COL_OS = new ListTableColumn("OS", Integer.class, Sorters.osNameById);
- public static final ListTableColumn COL_OWNER = new ListTableColumn("Besitzer", Sorters.userName);
- public static final ListTableColumn COL_UPLOADER = new ListTableColumn("Hochgeladen von", Sorters.userName);
+ public static final ListTableColumn COL_OWNER = new ListTableColumn("Besitzer", Sorters.userNameById);
+ public static final ListTableColumn COL_UPLOADER = new ListTableColumn("Hochgeladen von", Sorters.userNameById);
public static final ListTableColumn COL_ORG = new ListTableColumn("Organisation");
public ImagePublishedTable() {