summaryrefslogtreecommitdiffstats
path: root/dozentenmodul/src/main/java/org/openslx/dozmod/gui/wizard/LectureWizard.java
diff options
context:
space:
mode:
Diffstat (limited to 'dozentenmodul/src/main/java/org/openslx/dozmod/gui/wizard/LectureWizard.java')
-rw-r--r--dozentenmodul/src/main/java/org/openslx/dozmod/gui/wizard/LectureWizard.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/dozentenmodul/src/main/java/org/openslx/dozmod/gui/wizard/LectureWizard.java b/dozentenmodul/src/main/java/org/openslx/dozmod/gui/wizard/LectureWizard.java
index e34d93b3..1cf5dcb6 100644
--- a/dozentenmodul/src/main/java/org/openslx/dozmod/gui/wizard/LectureWizard.java
+++ b/dozentenmodul/src/main/java/org/openslx/dozmod/gui/wizard/LectureWizard.java
@@ -1,6 +1,6 @@
package org.openslx.dozmod.gui.wizard;
-import javax.swing.JFrame;
+import java.awt.Window;
import org.apache.log4j.Logger;
import org.openslx.dozmod.gui.wizard.layout.LectureCreationPageLayout;
@@ -19,7 +19,7 @@ public class LectureWizard extends Wizard {
* Wizard for creating or editing a lecture
* @param editExistingLecture whether to create new or edit existing lecture
*/
- public LectureWizard(JFrame parent, boolean editExistingLecture) {
+ public LectureWizard(Window parent, boolean editExistingLecture) {
super(parent);
this.editExistingLecture = editExistingLecture;
}