[jbosstools-commits] JBoss Tools SVN: r24135 - branches/jbosstools-3.1.x/jbpm/plugins/org.jbpm.gd.jpdl/src/org/jbpm/gd/jpdl/properties.

jbosstools-commits at lists.jboss.org jbosstools-commits at lists.jboss.org
Fri Aug 13 04:57:17 EDT 2010


Author: koen.aers at jboss.com
Date: 2010-08-13 04:57:17 -0400 (Fri, 13 Aug 2010)
New Revision: 24135

Modified:
   branches/jbosstools-3.1.x/jbpm/plugins/org.jbpm.gd.jpdl/src/org/jbpm/gd/jpdl/properties/EsbInputOutputConfigurationComposite.java
Log:
JBIDE-5596

Modified: branches/jbosstools-3.1.x/jbpm/plugins/org.jbpm.gd.jpdl/src/org/jbpm/gd/jpdl/properties/EsbInputOutputConfigurationComposite.java
===================================================================
--- branches/jbosstools-3.1.x/jbpm/plugins/org.jbpm.gd.jpdl/src/org/jbpm/gd/jpdl/properties/EsbInputOutputConfigurationComposite.java	2010-08-13 08:47:04 UTC (rev 24134)
+++ branches/jbosstools-3.1.x/jbpm/plugins/org.jbpm.gd.jpdl/src/org/jbpm/gd/jpdl/properties/EsbInputOutputConfigurationComposite.java	2010-08-13 08:57:17 UTC (rev 24135)
@@ -1,6 +1,7 @@
 package org.jbpm.gd.jpdl.properties;
 
 import org.eclipse.jface.viewers.ColumnWeightData;
+import org.eclipse.jface.viewers.TableLayout;
 import org.eclipse.swt.SWT;
 import org.eclipse.swt.custom.TableEditor;
 import org.eclipse.swt.events.FocusEvent;
@@ -12,6 +13,8 @@
 import org.eclipse.swt.graphics.Rectangle;
 import org.eclipse.swt.layout.FormAttachment;
 import org.eclipse.swt.layout.FormData;
+import org.eclipse.swt.layout.GridData;
+import org.eclipse.swt.layout.GridLayout;
 import org.eclipse.swt.widgets.Button;
 import org.eclipse.swt.widgets.Composite;
 import org.eclipse.swt.widgets.Table;
@@ -124,7 +127,8 @@
 	private void initTable() {
 		table.setHeaderVisible(true);
 		table.setLinesVisible(true);
-		AutoResizeTableLayout handlerConfigBeanTableLayout = new AutoResizeTableLayout(table);
+//		AutoResizeTableLayout handlerConfigBeanTableLayout = new AutoResizeTableLayout(table);
+		TableLayout handlerConfigBeanTableLayout = new TableLayout();
 		handlerConfigBeanTableLayout.addColumnData(new ColumnWeightData(50));
 		handlerConfigBeanTableLayout.addColumnData(new ColumnWeightData(50));
 		table.setLayout(handlerConfigBeanTableLayout);



More information about the jbosstools-commits mailing list