summaryrefslogtreecommitdiffstats
path: root/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/LocationSelectionWindowLayout.java
diff options
context:
space:
mode:
Diffstat (limited to 'dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/LocationSelectionWindowLayout.java')
-rw-r--r--dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/LocationSelectionWindowLayout.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/LocationSelectionWindowLayout.java b/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/LocationSelectionWindowLayout.java
index 57b859a4..74801fc6 100644
--- a/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/LocationSelectionWindowLayout.java
+++ b/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/LocationSelectionWindowLayout.java
@@ -24,7 +24,7 @@ public class LocationSelectionWindowLayout extends JDialog {
*
*/
private static final long serialVersionUID = -7722131149214063979L;
- protected final LocationSelector locationSelector;
+ protected final LocationSelector ctlLocationSelector;
protected final JButton btnSaveChanges;
protected final JButton btnClose;
protected final QLabel lblError;
@@ -37,18 +37,18 @@ public class LocationSelectionWindowLayout extends JDialog {
GridManager grid = new GridManager(this, 1);
WordWrapLabel header = new WordWrapLabel(
"Hier können Sie die Räume auswählen, in denen diese Veranstaltung sichtbar sein soll.");
- locationSelector = new LocationSelector();
+ ctlLocationSelector = new LocationSelector();
grid.add(header).fill(true, false).expand(true, false);
grid.nextRow();
grid.add(new JSeparator());
grid.nextRow();
- grid.add(locationSelector).fill(true, true).expand(true, true);
+ grid.add(ctlLocationSelector).fill(true, true).expand(true, true);
grid.nextRow();
// button panel on the bottom
JPanel buttonPanel = new JPanel();
buttonPanel.setLayout(new BoxLayout(buttonPanel, BoxLayout.X_AXIS));
lblError = new QLabel();
- lblError.setForeground(Color.red);
+ lblError.setForeground(Color.RED);
btnClose = new JButton("Abbrechen");
btnSaveChanges = new JButton("Übernehmen");
buttonPanel.add(lblError);