diff options
| author | Stephan Schwaer | 2015-08-04 17:53:02 +0200 |
|---|---|---|
| committer | Stephan Schwaer | 2015-08-04 17:53:02 +0200 |
| commit | bf9c195fef3012ba168e77ad7cb9e56533262341 (patch) | |
| tree | 065ae74010a88da140228d2a04f18b24c832c527 /dozentenmodul/src/main/java/org | |
| parent | [client] Added version table to image details, improved lecture details, adde... (diff) | |
| download | tutor-module-bf9c195fef3012ba168e77ad7cb9e56533262341.tar.gz tutor-module-bf9c195fef3012ba168e77ad7cb9e56533262341.tar.xz tutor-module-bf9c195fef3012ba168e77ad7cb9e56533262341.zip | |
[client] Fixed name of a variable...
Diffstat (limited to 'dozentenmodul/src/main/java/org')
| -rw-r--r-- | dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/LectureDetailsWindowLayout.java | 8 |
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(); |
