summaryrefslogtreecommitdiffstats
path: root/Dozentenmodul/src/gui/lecture/CreateLectureAllgemein_GUI.java
diff options
context:
space:
mode:
authorunknown2014-04-09 18:27:11 +0200
committerunknown2014-04-09 18:27:11 +0200
commitd9273594675fc82e454263380805c17dc123a4f7 (patch)
tree8c98edae17921c51374b42d2636b169dddc08b71 /Dozentenmodul/src/gui/lecture/CreateLectureAllgemein_GUI.java
parentAnwendung schließt nun, wenn Fenster schließt (diff)
downloadtutor-module-d9273594675fc82e454263380805c17dc123a4f7.tar.gz
tutor-module-d9273594675fc82e454263380805c17dc123a4f7.tar.xz
tutor-module-d9273594675fc82e454263380805c17dc123a4f7.zip
Bugfixes
-Namensänderungen -falsche Seiten wurden aufgerufen- -Plausibilitätschecks -Text-Änderungen -GUI Anpassungen
Diffstat (limited to 'Dozentenmodul/src/gui/lecture/CreateLectureAllgemein_GUI.java')
-rw-r--r--Dozentenmodul/src/gui/lecture/CreateLectureAllgemein_GUI.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/Dozentenmodul/src/gui/lecture/CreateLectureAllgemein_GUI.java b/Dozentenmodul/src/gui/lecture/CreateLectureAllgemein_GUI.java
index 56abba76..936f9b13 100644
--- a/Dozentenmodul/src/gui/lecture/CreateLectureAllgemein_GUI.java
+++ b/Dozentenmodul/src/gui/lecture/CreateLectureAllgemein_GUI.java
@@ -398,7 +398,7 @@ public class CreateLectureAllgemein_GUI extends JFrame {
null,
"Das End-Datum liegt vor dem Start-Datum. Bitte ändern.",
"Datum fehlerhaft",
- JOptionPane.ERROR_MESSAGE);
+ JOptionPane.INFORMATION_MESSAGE);
} else {
// bereit
isDateOrderCorrect = true;
@@ -411,7 +411,7 @@ public class CreateLectureAllgemein_GUI extends JFrame {
JOptionPane.showMessageDialog(null,
"Das End-Datum liegt zu weit in der Zukunft. Erlaubt ist maximal:\n"
+ endDate, "Datum fehlerhaft",
- JOptionPane.ERROR_MESSAGE);
+ JOptionPane.INFORMATION_MESSAGE);
} else {
// bereit
isDateMaxLifeTimeCorrect = true;
@@ -426,7 +426,7 @@ public class CreateLectureAllgemein_GUI extends JFrame {
null,
"Bitte geben Sie einen Veranstaltungsnamen und eine Beschreibung ein.",
"Datum fehlerhaft",
- JOptionPane.ERROR_MESSAGE);
+ JOptionPane.INFORMATION_MESSAGE);
} else {
// Textfelder bereit
isAllInformationReady = true;
@@ -453,7 +453,7 @@ public class CreateLectureAllgemein_GUI extends JFrame {
Image.image.setImagename(txtFldVeranstaltungsname
.getText());
- LinkLecture_GUI ev = new LinkLecture_GUI();
+ CreateLectureLink_GUI ev = new CreateLectureLink_GUI();
ev.setVisible(true);
dispose();
}