summaryrefslogtreecommitdiffstats
path: root/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/LectureDetailsWindowLayout.java
diff options
context:
space:
mode:
authorJonathan Bauer2016-01-05 14:11:28 +0100
committerJonathan Bauer2016-01-05 14:11:28 +0100
commitaf93df1939c5c319456608bdc04c09c32cbe084a (patch)
tree7e64bacc7f21a86cbfdba46bdd249a3635afe196 /dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/LectureDetailsWindowLayout.java
parent[client] room selection widget [wip] (diff)
downloadtutor-module-af93df1939c5c319456608bdc04c09c32cbe084a.tar.gz
tutor-module-af93df1939c5c319456608bdc04c09c32cbe084a.tar.xz
tutor-module-af93df1939c5c319456608bdc04c09c32cbe084a.zip
[client] checkbox to show the lecture only in the selected rooms
functionality still wip renamed room -> locations
Diffstat (limited to 'dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/LectureDetailsWindowLayout.java')
-rw-r--r--dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/LectureDetailsWindowLayout.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/LectureDetailsWindowLayout.java b/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/LectureDetailsWindowLayout.java
index 388f3605..e87400f8 100644
--- a/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/LectureDetailsWindowLayout.java
+++ b/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/LectureDetailsWindowLayout.java
@@ -63,7 +63,7 @@ public abstract class LectureDetailsWindowLayout extends JDialog {
protected final QLabel lblUseCount;
protected final JButton btnPermissions;
- protected final JButton btnRooms;
+ protected final JButton btnLocations;
protected QLabel lblError;
protected final JButton btnSaveChanges;
@@ -240,10 +240,10 @@ public abstract class LectureDetailsWindowLayout extends JDialog {
// button for the custom permissions
JPanel bottomButtonPanel = new JPanel();
btnPermissions = new JButton("Berechtigungen");
- btnRooms = new JButton("Raumauswahl");
+ btnLocations = new JButton("Raumauswahl");
grid.skip();
bottomButtonPanel.add(btnPermissions);
- bottomButtonPanel.add(btnRooms);
+ bottomButtonPanel.add(btnLocations);
grid.add(bottomButtonPanel);
grid.skip();
grid.nextRow();