summaryrefslogtreecommitdiffstats
path: root/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/LectureDetailsWindow.java
diff options
context:
space:
mode:
authorJonathan Bauer2015-08-19 16:39:06 +0200
committerJonathan Bauer2015-08-19 16:39:06 +0200
commit96a86129edb0845dc8fb6eda3ff6cfa7124b9ba2 (patch)
treeb1f66dd399d7dac02e9f513d57a5f29163902343 /dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/LectureDetailsWindow.java
parent[client] fix all user getting same permissions object in wizard custom perms ... (diff)
downloadtutor-module-96a86129edb0845dc8fb6eda3ff6cfa7124b9ba2.tar.gz
tutor-module-96a86129edb0845dc8fb6eda3ff6cfa7124b9ba2.tar.xz
tutor-module-96a86129edb0845dc8fb6eda3ff6cfa7124b9ba2.zip
[client] refactored TransferHelper to ThriftActions
Diffstat (limited to 'dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/LectureDetailsWindow.java')
-rw-r--r--dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/LectureDetailsWindow.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/LectureDetailsWindow.java b/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/LectureDetailsWindow.java
index c0956cf3..90de4aed 100644
--- a/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/LectureDetailsWindow.java
+++ b/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/LectureDetailsWindow.java
@@ -18,7 +18,6 @@ import org.openslx.bwlp.thrift.iface.ImageDetailsRead;
import org.openslx.bwlp.thrift.iface.ImageVersionDetails;
import org.openslx.bwlp.thrift.iface.LectureRead;
import org.openslx.bwlp.thrift.iface.UserInfo;
-import org.openslx.dozmod.filetransfer.TransferHelper;
import org.openslx.dozmod.gui.Gui;
import org.openslx.dozmod.gui.MainWindow;
import org.openslx.dozmod.gui.helper.MessageType;
@@ -28,6 +27,7 @@ import org.openslx.dozmod.gui.window.layout.LectureDetailsWindowLayout;
import org.openslx.dozmod.permissions.LecturePerms;
import org.openslx.dozmod.thrift.Session;
import org.openslx.dozmod.thrift.ThriftError;
+import org.openslx.dozmod.thrift.ThriftActions;
import org.openslx.dozmod.thrift.cache.UserCache;
import org.openslx.dozmod.util.FormatHelper;
import org.openslx.thrifthelper.ThriftManager;
@@ -259,7 +259,7 @@ public class LectureDetailsWindow extends LectureDetailsWindowLayout implements
null, null);
return;
}
- TransferHelper.initDownload(JOptionPane.getFrameForComponent(this), lecture.imageVersionId,
+ ThriftActions.initDownload(JOptionPane.getFrameForComponent(this), lecture.imageVersionId,
image.imageName, image.virtId, versionSize, null);
}