Changeset 480 for trunk/src/atk/Table.d
- Timestamp:
- 03/25/08 18:16:02 (8 months ago)
- Files:
-
- trunk/src/atk/Table.d (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/atk/Table.d
r428 r480 49 49 * module aliases: 50 50 * local aliases: 51 * overrides: 51 52 */ 52 53 … … 474 475 * Returns: a gchar* representing the column description, or NULLif value does not implement this interface. 475 476 */ 476 public char[]getColumnDescription(int column)477 public string getColumnDescription(int column) 477 478 { 478 479 // const gchar* atk_table_get_column_description (AtkTable *table, gint column); 479 return Str.toString(atk_table_get_column_description(atkTable, column)) .dup;480 return Str.toString(atk_table_get_column_description(atkTable, column)); 480 481 } 481 482 … … 486 487 * Returns: a gchar* representing the row description, or NULLif value does not implement this interface. 487 488 */ 488 public char[]getRowDescription(int row)489 public string getRowDescription(int row) 489 490 { 490 491 // const gchar* atk_table_get_row_description (AtkTable *table, gint row); 491 return Str.toString(atk_table_get_row_description(atkTable, row)) .dup;492 return Str.toString(atk_table_get_row_description(atkTable, row)); 492 493 } 493 494 … … 562 563 * to set for the specified row of table 563 564 */ 564 public void setRowDescription(int row, char[]description)565 public void setRowDescription(int row, string description) 565 566 { 566 567 // void atk_table_set_row_description (AtkTable *table, gint row, const gchar *description); … … 575 576 * to set for the specified column of the table 576 577 */ 577 public void setColumnDescription(int column, char[]description)578 public void setColumnDescription(int column, string description) 578 579 { 579 580 // void atk_table_set_column_description (AtkTable *table, gint column, const gchar *description);
