summaryrefslogtreecommitdiffstats
path: root/dozentenmodul/src/main/java/org/openslx/dozmod/gui/wizard/layout/ImageMetaDataPageLayout.java
diff options
context:
space:
mode:
Diffstat (limited to 'dozentenmodul/src/main/java/org/openslx/dozmod/gui/wizard/layout/ImageMetaDataPageLayout.java')
-rw-r--r--dozentenmodul/src/main/java/org/openslx/dozmod/gui/wizard/layout/ImageMetaDataPageLayout.java15
1 files changed, 0 insertions, 15 deletions
diff --git a/dozentenmodul/src/main/java/org/openslx/dozmod/gui/wizard/layout/ImageMetaDataPageLayout.java b/dozentenmodul/src/main/java/org/openslx/dozmod/gui/wizard/layout/ImageMetaDataPageLayout.java
index 48b88627..63089274 100644
--- a/dozentenmodul/src/main/java/org/openslx/dozmod/gui/wizard/layout/ImageMetaDataPageLayout.java
+++ b/dozentenmodul/src/main/java/org/openslx/dozmod/gui/wizard/layout/ImageMetaDataPageLayout.java
@@ -23,9 +23,6 @@ public abstract class ImageMetaDataPageLayout extends WizardPage {
protected final QLabel lblOperatingSystem;
protected final JComboBox<OperatingSystem> cboOperatingSystem;
protected final JTextArea txtDescription;
- protected final JTextArea startCommand;
- protected final QLabel sCommandCaption;
- protected final JScrollPane startCommandPane;
protected final JCheckBox chkLicenseRestricted;
protected final JCheckBox chkIsTemplate;
@@ -54,18 +51,6 @@ public abstract class ImageMetaDataPageLayout extends WizardPage {
grid.add(cboOperatingSystem);
grid.nextRow();
- sCommandCaption = new QLabel(I18n.PAGE_LAYOUT.getString("ImageMetaData.Label.startCommand.text"));
- startCommand = new JTextArea(1, 50);
- startCommand.setMinimumSize(Gui.getScaledDimension(0, 35));
- startCommand.setLineWrap(true);
- startCommand.setWrapStyleWord(true);
- startCommandPane = new JScrollPane(startCommand, JScrollPane.VERTICAL_SCROLLBAR_NEVER,
- JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);
- startCommandPane.setMinimumSize(startCommand.getMinimumSize());
- grid.add(sCommandCaption);
- grid.add(startCommandPane).fill(true, false).expand(true, false);
- grid.nextRow();
-
// description
QLabel descriptionCaption = new QLabel(
I18n.PAGE_LAYOUT.getString("ImageMetaData.Label.description.text"));