summaryrefslogtreecommitdiffstats
path: root/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/LectureListWindowLayout.java
diff options
context:
space:
mode:
authorSimon Rettberg2015-07-27 17:55:01 +0200
committerSimon Rettberg2015-07-27 17:55:01 +0200
commit6b08a731c29eb47f0b2e999d45dded76703af85b (patch)
treed5072a87b20dfb2a9737e262594c915b99727649 /dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/LectureListWindowLayout.java
parent[client] Transformed MainWindow (diff)
downloadtutor-module-6b08a731c29eb47f0b2e999d45dded76703af85b.tar.gz
tutor-module-6b08a731c29eb47f0b2e999d45dded76703af85b.tar.xz
tutor-module-6b08a731c29eb47f0b2e999d45dded76703af85b.zip
[client] Moar Swing
Diffstat (limited to 'dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/LectureListWindowLayout.java')
-rw-r--r--dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/LectureListWindowLayout.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/LectureListWindowLayout.java b/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/LectureListWindowLayout.java
index ea1ecdac..eea13ceb 100644
--- a/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/LectureListWindowLayout.java
+++ b/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/LectureListWindowLayout.java
@@ -1,5 +1,7 @@
package org.openslx.dozmod.gui.window.layout;
+import java.awt.GridBagLayout;
+
import org.eclipse.jface.viewers.ArrayContentProvider;
import org.eclipse.jface.viewers.TableViewer;
import org.eclipse.swt.SWT;
@@ -55,8 +57,8 @@ public abstract class LectureListWindowLayout extends CompositePage {
protected String infoTextString = "Hier können Sie Veranstaltungen anlegen, bearbeiten und löschen.";
- public LectureListWindowLayout(final Composite mainShell) {
- super(mainShell, SWT.NONE);
+ public LectureListWindowLayout() {
+ super(new GridBagLayout());
// the layout and layoutData of the LectureListWindow
this.setLayout(new GridLayout(2, false));