summaryrefslogtreecommitdiffstats
path: root/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/ConfigWindow.java
diff options
context:
space:
mode:
authorJonathan Bauer2015-09-02 14:14:28 +0200
committerJonathan Bauer2015-09-02 14:14:28 +0200
commit065929756f74cd4c7e984319d4df7fd8fd1f21f3 (patch)
tree5d5730e52d8a524ffec1b1ee456b237fdf4e04d5 /dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/ConfigWindow.java
parent[client] only if login == ECP ... (diff)
downloadtutor-module-065929756f74cd4c7e984319d4df7fd8fd1f21f3.tar.gz
tutor-module-065929756f74cd4c7e984319d4df7fd8fd1f21f3.tar.xz
tutor-module-065929756f74cd4c7e984319d4df7fd8fd1f21f3.zip
[client] DisclaimerWindow now without agreebox and only with "Close" Button. Do not show virt notice by default.
& various cosmetic fixes
Diffstat (limited to 'dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/ConfigWindow.java')
-rw-r--r--dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/ConfigWindow.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/ConfigWindow.java b/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/ConfigWindow.java
index 849b6520..8fde091c 100644
--- a/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/ConfigWindow.java
+++ b/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/ConfigWindow.java
@@ -118,7 +118,7 @@ public class ConfigWindow extends ConfigWindowLayout implements UiFeedback {
try {
userConfig = ThriftManager.getSatClient().getUserConfig(Session.getSatelliteToken());
} catch (TException e) {
- ThriftError.showMessage(this, LOGGER, e, "Konnte die benutzerspeizifische Konfiguration nicht vom Satelliten holen!");
+ ThriftError.showMessage(this, LOGGER, e, "Konnte die benutzerspezifische Konfiguration nicht vom Satelliten holen!");
}
return userConfig;
}
@@ -129,7 +129,7 @@ public class ConfigWindow extends ConfigWindowLayout implements UiFeedback {
try {
ThriftManager.getSatClient().setUserConfig(Session.getSatelliteToken(), config);
} catch (TException e) {
- ThriftError.showMessage(this, LOGGER, e, "Konnte die benutzerspeizifische Konfiguration nicht vom Satelliten holen!");
+ ThriftError.showMessage(this, LOGGER, e, "Konnte die benutzerspezifische Konfiguration nicht vom Satelliten holen!");
return false;
}
return true;