From bf9c195fef3012ba168e77ad7cb9e56533262341 Mon Sep 17 00:00:00 2001 From: Stephan Schwaer Date: Tue, 4 Aug 2015 17:53:02 +0200 Subject: [client] Fixed name of a variable... --- .../dozmod/gui/window/layout/LectureDetailsWindowLayout.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'dozentenmodul/src/main/java') 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(); -- cgit v1.2.3-55-g7522