summaryrefslogtreecommitdiffstats
path: root/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/VirtualizerNoticeWindowLayout.java
diff options
context:
space:
mode:
Diffstat (limited to 'dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/VirtualizerNoticeWindowLayout.java')
-rw-r--r--dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/VirtualizerNoticeWindowLayout.java17
1 files changed, 7 insertions, 10 deletions
diff --git a/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/VirtualizerNoticeWindowLayout.java b/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/VirtualizerNoticeWindowLayout.java
index 6e1574e1..3b711132 100644
--- a/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/VirtualizerNoticeWindowLayout.java
+++ b/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/VirtualizerNoticeWindowLayout.java
@@ -24,9 +24,8 @@ public abstract class VirtualizerNoticeWindowLayout extends JDialog {
+ "</body></html>";
- protected JButton windowsDLButton;
- protected JButton linuxDLButton;
- protected JCheckBox readCheck;
+// protected JButton windowsDLButton;
+ protected JButton btnDL;
protected JButton continueButton;
public VirtualizerNoticeWindowLayout(Frame modalParent) {
@@ -50,17 +49,15 @@ public abstract class VirtualizerNoticeWindowLayout extends JDialog {
infoPane.add(Box.createRigidArea(new Dimension(0, 10)));
// Download buttons
- windowsDLButton = new JButton("<html>VMWare Player für <b>Windows</b> herunterladen</html>");
- linuxDLButton = new JButton("<html>VMWare Player für <b>Linux</b> herunterladen</html>");
- infoPane.add(windowsDLButton);
- infoPane.add(linuxDLButton);
+// windowsDLButton = new JButton("<html>VMWare Player für <b>Windows</b> herunterladen</html>");
+ btnDL = new JButton("<html>VMWare Player herunterladen</html>");
+// infoPane.add(windowsDLButton);
+ infoPane.add(btnDL);
// Bottom controls
JPanel bottomPane = new JPanel();
bottomPane.setLayout(new BoxLayout(bottomPane, BoxLayout.LINE_AXIS));
-
- readCheck = new JCheckBox("Diese Benachrichtigung nicht mehr anzeigen");
- bottomPane.add(readCheck);
+
bottomPane.add(Box.createHorizontalGlue());