X-Git-Url: https://git.argeo.org/?a=blobdiff_plain;f=org.argeo.cms.ui%2Fsrc%2Forg%2Fargeo%2Fcms%2Futil%2FCmsPane.java;h=a8d085cfe688ca117717ddf62ab9d568668429d2;hb=743fc68ed576cb578a9cc6c59e1f423d29213be1;hp=f64768df7dd4820218e0214ac461ebbe4f258d98;hpb=bf6e7cfca0faab5138ab1591a701a532a65a9ea4;p=lgpl%2Fargeo-commons.git diff --git a/org.argeo.cms.ui/src/org/argeo/cms/util/CmsPane.java b/org.argeo.cms.ui/src/org/argeo/cms/util/CmsPane.java index f64768df7..a8d085cfe 100644 --- a/org.argeo.cms.ui/src/org/argeo/cms/util/CmsPane.java +++ b/org.argeo.cms.ui/src/org/argeo/cms/util/CmsPane.java @@ -16,21 +16,21 @@ public class CmsPane { public CmsPane(Composite parent, int style) { parent.setLayout(CmsUtils.noSpaceGridLayout()); - qaArea = new Composite(parent, SWT.NONE); - qaArea.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, false)); - RowLayout qaLayout = new RowLayout(); - qaLayout.spacing = 0; - qaArea.setLayout(qaLayout); +// qaArea = new Composite(parent, SWT.NONE); +// qaArea.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, false)); +// RowLayout qaLayout = new RowLayout(); +// qaLayout.spacing = 0; +// qaArea.setLayout(qaLayout); mainArea = new Composite(parent, SWT.NONE); mainArea.setLayout(new GridLayout()); mainArea.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true)); - supportArea = new Composite(parent, SWT.NONE); - supportArea.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, false)); - RowLayout supportLayout = new RowLayout(); - supportLayout.spacing = 0; - supportArea.setLayout(supportLayout); +// supportArea = new Composite(parent, SWT.NONE); +// supportArea.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, false)); +// RowLayout supportLayout = new RowLayout(); +// supportLayout.spacing = 0; +// supportArea.setLayout(supportLayout); } public Composite getMainArea() {