diff org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet98.d @ 112:9f4c18c268b2

Update to compile and execute with dmd 2.052.
author kntroh
date Wed, 16 Mar 2011 21:53:53 +0900
parents 69b1fa94a4a8
children 536e43f63c81
line wrap: on
line diff
--- a/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet98.d	Sat Nov 13 14:15:51 2010 +0100
+++ b/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet98.d	Wed Mar 16 21:53:53 2011 +0900
@@ -32,14 +32,18 @@
 
 import java.lang.all;
 
-import tango.util.Convert;
+version(Tango){
+    import tango.util.Convert;
+} else { // Phobos
+    import std.conv;
+}
 
 static int pageNum = 0;
 static Composite pageComposite;
 
 void main(String args[]) {
     Display display = new Display();
-    final Shell shell = new Shell(display);
+    Shell shell = new Shell(display);
     shell.setLayout(new GridLayout());
     Button button = new Button(shell, SWT.PUSH);
     button.setText("Push");
@@ -59,7 +63,7 @@
                 Table table = new Table(pageComposite, SWT.BORDER);
                 table.setLayoutData(new GridData());
                 for (int i = 0; i < 5; i++) {
-                    (new TableItem(table, SWT.NONE)).setText("table item " ~ to!(char[])(i));
+                    (new TableItem(table, SWT.NONE)).setText("table item " ~ to!(String)(i));
                 }
             } else {
                 (new Button(pageComposite, SWT.RADIO)).setText("radio");