Show
Ignore:
Timestamp:
03/25/08 18:16:02 (8 months ago)
Author:
Mike Wey
Message:

Support for dmd 2.012

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/atk/Table.d

    r428 r480  
    4949 * module aliases: 
    5050 * local aliases: 
     51 * overrides: 
    5152 */ 
    5253 
     
    474475     * Returns: a gchar* representing the column description, or NULLif value does not implement this interface. 
    475476     */ 
    476     public char[] getColumnDescription(int column) 
     477    public string getColumnDescription(int column) 
    477478    { 
    478479        // 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))
    480481    } 
    481482     
     
    486487     * Returns: a gchar* representing the row description, or NULLif value does not implement this interface. 
    487488     */ 
    488     public char[] getRowDescription(int row) 
     489    public string getRowDescription(int row) 
    489490    { 
    490491        // 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))
    492493    } 
    493494     
     
    562563     * to set for the specified row of table 
    563564     */ 
    564     public void setRowDescription(int row, char[] description) 
     565    public void setRowDescription(int row, string description) 
    565566    { 
    566567        // void atk_table_set_row_description (AtkTable *table,  gint row,  const gchar *description); 
     
    575576     * to set for the specified column of the table 
    576577     */ 
    577     public void setColumnDescription(int column, char[] description) 
     578    public void setColumnDescription(int column, string description) 
    578579    { 
    579580        // void atk_table_set_column_description (AtkTable *table,  gint column,  const gchar *description);