summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Rettberg2015-08-12 17:10:58 +0200
committerSimon Rettberg2015-08-12 17:10:58 +0200
commitd32ade75b987baef74b09b580c0ef8f1494078f6 (patch)
tree19c2abf99d64a7f7007525b2a8536279a089b913
parent[client] Wizard page layouts now using ne grid manager. (diff)
downloadtutor-module-d32ade75b987baef74b09b580c0ef8f1494078f6.tar.gz
tutor-module-d32ade75b987baef74b09b580c0ef8f1494078f6.tar.xz
tutor-module-d32ade75b987baef74b09b580c0ef8f1494078f6.zip
[client] Don't log noncritical msgbox
-rw-r--r--dozentenmodul/src/main/java/org/openslx/dozmod/gui/wizard/LectureWizard.java2
1 files changed, 1 insertions, 1 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 ea9a0bbe..2b25c97c 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
@@ -92,7 +92,7 @@ public class LectureWizard extends Wizard implements UiFeedback {
return;
}
if (Gui.showMessageBox(this, "Veranstaltung erstellt! Wollen Sie zur Übersicht wechseln?",
- MessageType.QUESTION_YESNO, LOGGER, null)) {
+ MessageType.QUESTION_YESNO, null, null)) {
LectureCache.get(true);
MainWindow.showPage(LectureListWindow.class);
}