Changeset 480 for trunk/demos/gtkD/TestTreeView.d
- Timestamp:
- 03/25/08 18:16:02 (8 months ago)
- Files:
-
- trunk/demos/gtkD/TestTreeView.d (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/demos/gtkD/TestTreeView.d
r322 r480 47 47 */ 48 48 49 static char**book_closed_xpm = [49 static string[] book_closed_xpm = [ 50 50 "16 16 6 1", 51 51 " c None s None", … … 149 149 { 150 150 151 char[]gtkDL;152 char[]gtk;153 char[]desc;151 string gtkDL; 152 string gtk; 153 string desc; 154 154 int percent; 155 char[]author;155 string author; 156 156 //TestTreeView ttv; 157 157 158 this( char[] gtkDL,char[] gtk,char[]desc,int percent)//, TestTreeView ttv)158 this(string gtkDL,string gtk,string desc,int percent)//, TestTreeView ttv) 159 159 { 160 160 this.gtkDL = gtkDL; … … 177 177 } 178 178 179 char[]getNodeValue(int column)180 { 181 char[]value;179 string getNodeValue(int column) 180 { 181 string value; 182 182 switch (column) 183 183 {
