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/Hyperlink.d

    r466 r480  
    4949 * module aliases: 
    5050 * local aliases: 
     51 * overrides: 
    5152 */ 
    5253 
     
    8990     
    9091    /** the main Gtk struct as a void* */ 
    91     protected void* getStruct() 
     92    protected override void* getStruct() 
    9293    { 
    9394        return cast(void*)atkHyperlink; 
     
    153154     * Returns: a string specifying the URI 
    154155     */ 
    155     public char[] getUri(int i) 
     156    public string getUri(int i) 
    156157    { 
    157158        // gchar* atk_hyperlink_get_uri (AtkHyperlink *link_,  gint i); 
    158         return Str.toString(atk_hyperlink_get_uri(atkHyperlink, i)).dup
     159        return Str.toString(atk_hyperlink_get_uri(atkHyperlink, i))
    159160    } 
    160161