diff dwt/ole/win32/OlePropertyDescription.d @ 212:ab60f3309436

reverted the char[] to String and use the an alias.
author Frank Benoit <benoit@tionex.de>
date Mon, 05 May 2008 00:12:38 +0200
parents ecba636b634e
children
line wrap: on
line diff
--- a/dwt/ole/win32/OlePropertyDescription.d	Sat Apr 26 10:01:48 2008 +0200
+++ b/dwt/ole/win32/OlePropertyDescription.d	Mon May 05 00:12:38 2008 +0200
@@ -11,14 +11,15 @@
  *     Frank Benoit <benoit@tionex.de>
  *******************************************************************************/
 module dwt.ole.win32.OlePropertyDescription;
+import dwt.dwthelper.utils;
 
 
 public class OlePropertyDescription {
     public int id;
-    public char[] name;
+    public String name;
     public int type;
     public int flags;
     public int kind;
-    public char[] description;
-    public char[] helpFile;
+    public String description;
+    public String helpFile;
 }