diff org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet235.d @ 29:4e5843b771cc

First snippets buildable on windows
author Frank Benoit <benoit@tionex.de>
date Sun, 22 Mar 2009 19:55:00 +0100
parents 69b1fa94a4a8
children 9f4c18c268b2
line wrap: on
line diff
--- a/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet235.d	Sun Mar 22 15:17:04 2009 +0100
+++ b/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet235.d	Sun Mar 22 19:55:00 2009 +0100
@@ -41,10 +41,10 @@
     shell.setText("The SWT.Settings Event");
     shell.setLayout(new GridLayout());
     Label label = new Label(shell, SWT.WRAP);
-    label.setLayoutData(new GridData(SWT.FILL, DWT.CENTER, true, false));
+    label.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false));
     label.setText("Change a system setting and the table below will be updated.");
     final Table table = new Table(shell, SWT.BORDER);
-    table.setLayoutData(new GridData(SWT.FILL, DWT.FILL, true, true));
+    table.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));
     TableColumn column = new TableColumn(table, SWT.NONE);
     column = new TableColumn(table, SWT.NONE);
     column.setWidth(150);