summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephan Schwaer2015-08-04 17:53:02 +0200
committerStephan Schwaer2015-08-04 17:53:02 +0200
commitbf9c195fef3012ba168e77ad7cb9e56533262341 (patch)
tree065ae74010a88da140228d2a04f18b24c832c527
parent[client] Added version table to image details, improved lecture details, adde... (diff)
downloadtutor-module-bf9c195fef3012ba168e77ad7cb9e56533262341.tar.gz
tutor-module-bf9c195fef3012ba168e77ad7cb9e56533262341.tar.xz
tutor-module-bf9c195fef3012ba168e77ad7cb9e56533262341.zip
[client] Fixed name of a variable...
-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();