summaryrefslogtreecommitdiffstats
path: root/dozentenmodul/src/main/java
diff options
context:
space:
mode:
Diffstat (limited to 'dozentenmodul/src/main/java')
-rw-r--r--dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/LectureDetailsWindowLayout.java8
1 files changed, 4 insertions, 4 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 87a14ff3..ae199a9a 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
@@ -70,16 +70,16 @@ public abstract class LectureDetailsWindowLayout extends JDialog {
infoPanel.add(new JLabel("Beschreibung"), GridPos.get(0, row, false, false));
infoPanel.add(new JScrollPane(txtDescription), GridPos.get(1, row++, true, false));
// linked image
- JPanel pnlLinkeImage = new JPanel();
+ JPanel linkedImagePanel = new JPanel();
// name
txtImageName = new JLabel();
infoPanel.add(new JLabel("Imagename"), GridPos.get(0, row, false, false));
- pnlLinkeImage.add(txtImageName);
+ linkedImagePanel.add(txtImageName);
// link button for image
btnLinkImage = new JButton();
btnLinkImage.setText("Link Image");
- pnlLinkeImage.add(btnLinkImage);
- infoPanel.add(pnlLinkeImage, GridPos.get(1, row++, false, false));
+ linkedImagePanel.add(btnLinkImage);
+ infoPanel.add(linkedImagePanel, GridPos.get(1, row++, false, false));
// image version handling
// auto update
btnAutoUpdate = new JCheckBox();