root/sources/gtkd.diff

Revision 582, 8.9 kB (checked in by Gregor, 2 years ago)

--

  • dsss.conf

    old new  
     1name = gtkd 
     2 
     3[src] 
     4type = subdir 
  • src/dsss.conf

    old new  
     1name = gtkd 
     2 
     3[atk] 
     4[cairoLib] 
     5[gdk] 
     6[gdkpixbuf] 
     7[glade] 
     8[glib] 
     9[gobject] 
     10[gthread] 
     11[gtk] 
     12[gtkc] 
     13[pango] 
  • src/gdk/Colormap.d

    old new  
    153153     * Returns: 
    154154     *  the colormap 
    155155     */ 
    156     public Colormap ref() 
     156    public Colormap ref_() 
    157157    { 
    158158        // GdkColormap* gdk_colormap_ref (GdkColormap *cmap); 
    159159        return new Colormap( gdk_colormap_ref(gdkColormap) ); 
  • src/gdk/Cursor.d

    old new  
    312312     * Returns: 
    313313     *  Same cursor that was passed in 
    314314     */ 
    315     public Cursor ref() 
     315    public Cursor ref_() 
    316316    { 
    317317        // GdkCursor* gdk_cursor_ref (GdkCursor *cursor); 
    318318        return new Cursor( gdk_cursor_ref(gdkCursor) ); 
  • src/gdk/Font.d

    old new  
    383383     * Returns: 
    384384     *  font 
    385385     */ 
    386     public Font ref() 
     386    public Font ref_() 
    387387    { 
    388388        // GdkFont* gdk_font_ref (GdkFont *font); 
    389389        return new Font( gdk_font_ref(gdkFont) ); 
  • src/gdk/GC.d

    old new  
    192192     * Returns: 
    193193     *  the gc. 
    194194     */ 
    195     public GC ref() 
     195    public GC ref_() 
    196196    { 
    197197        // GdkGC* gdk_gc_ref (GdkGC *gc); 
    198198        return new GC( gdk_gc_ref(gdkGC) ); 
  • src/gdk/ImageGdk.d

    old new  
    193193     * Returns: 
    194194     *  the image 
    195195     */ 
    196     public GdkImage* ref() 
     196    public GdkImage* ref_() 
    197197    { 
    198198        // GdkImage* gdk_image_ref (GdkImage *image); 
    199199        return gdk_image_ref(gdkImage); 
  • src/gdkpixbuf/PixbufAnimation.d

    old new  
    137137     * Returns: 
    138138     *  The same as the animation argument. 
    139139     */ 
    140     public PixbufAnimation ref() 
     140    public PixbufAnimation ref_() 
    141141    { 
    142142        // GdkPixbufAnimation* gdk_pixbuf_animation_ref (GdkPixbufAnimation *animation); 
    143143        return new PixbufAnimation( gdk_pixbuf_animation_ref(gdkPixbufAnimation) ); 
  • src/glib/AsyncQueue.d

    old new  
    150150     * Returns: 
    151151     *  the queue that was passed in (since 2.6) 
    152152     */ 
    153     public AsyncQueue ref() 
     153    public AsyncQueue ref_() 
    154154    { 
    155155        // GAsyncQueue* g_async_queue_ref (GAsyncQueue *queue); 
    156156        return new AsyncQueue( g_async_queue_ref(gAsyncQueue) ); 
  • src/glib/HashTable.d

    old new  
    433433     *  the passed in GHashTable. 
    434434     * Since 2.10 
    435435     */ 
    436     public HashTable ref() 
     436    public HashTable ref_() 
    437437    { 
    438438        // GHashTable* g_hash_table_ref (GHashTable *hash_table); 
    439439        return new HashTable( g_hash_table_ref(gHashTable) ); 
  • src/glib/IOChannel.d

    old new  
    524524     * Returns: 
    525525     *  the channel that was passed in (since 2.6) 
    526526     */ 
    527     public IOChannel ref() 
     527    public IOChannel ref_() 
    528528    { 
    529529        // GIOChannel* g_io_channel_ref (GIOChannel *channel); 
    530530        return new IOChannel( g_io_channel_ref(gIOChannel) ); 
  • src/glib/MainContext.d

    old new  
    205205     * Returns: 
    206206     *  the context that was passed in (since 2.6) 
    207207     */ 
    208     public MainContext ref() 
     208    public MainContext ref_() 
    209209    { 
    210210        // GMainContext* g_main_context_ref (GMainContext *context); 
    211211        return new MainContext( g_main_context_ref(gMainContext) ); 
  • src/glib/MainLoop.d

    old new  
    168168     * Returns: 
    169169     *  loop 
    170170     */ 
    171     public MainLoop ref() 
     171    public MainLoop ref_() 
    172172    { 
    173173        // GMainLoop* g_main_loop_ref (GMainLoop *loop); 
    174174        return new MainLoop( g_main_loop_ref(gMainLoop) ); 
  • src/glib/Source.d

    old new  
    260260     * Returns: 
    261261     *  source 
    262262     */ 
    263     public Source ref() 
     263    public Source ref_() 
    264264    { 
    265265        // GSource* g_source_ref (GSource *source); 
    266266        return new Source( g_source_ref(gSource) ); 
  • src/gobject/Closure.d

    old new  
    175175     * Returns: 
    176176     * The closure passed in, for convenience 
    177177     */ 
    178     public Closure ref() 
     178    public Closure ref_() 
    179179    { 
    180180        // GClosure* g_closure_ref (GClosure *closure); 
    181181        return new Closure( g_closure_ref(gClosure) ); 
  • src/gobject/ObjectG.d

    old new  
    589589     * Returns: 
    590590     * the same object 
    591591     */ 
    592     public static void* ref(void* object) 
     592    public static void* ref_(void* object) 
    593593    { 
    594594        // gpointer g_object_ref (gpointer object); 
    595595        return g_object_ref(object); 
  • src/gobject/ParamSpec.d

    old new  
    128128     * Returns: 
    129129     * the GParamSpec that was passed into this function 
    130130     */ 
    131     public ParamSpec ref() 
     131    public ParamSpec ref_() 
    132132    { 
    133133        // GParamSpec* g_param_spec_ref (GParamSpec *pspec); 
    134134        return new ParamSpec( g_param_spec_ref(gParamSpec) ); 
  • src/gtk/ObjectGtk.d

    old new  
    234234     * Returns: 
    235235     * object. 
    236236     */ 
    237     public GtkObject* ref() 
     237    public GtkObject* ref_() 
    238238    { 
    239239        // GtkObject* gtk_object_ref (GtkObject *object); 
    240240        return gtk_object_ref(gtkObject); 
  • src/gtk/Style.d

    old new  
    248248     * Returns: 
    249249     *  style. 
    250250     */ 
    251     public Style ref() 
     251    public Style ref_() 
    252252    { 
    253253        // GtkStyle* gtk_style_ref (GtkStyle *style); 
    254254        return new Style( gtk_style_ref(gtkStyle) ); 
  • src/gtk/TextAttributes.d

    old new  
    205205     * Background color as a string. 
    206206     * Default value: NULL 
    207207     */ 
    208     public TextAttributes ref() 
     208    public TextAttributes ref_() 
    209209    { 
    210210        // GtkTextAttributes* gtk_text_attributes_ref (GtkTextAttributes *values); 
    211211        return new TextAttributes( gtk_text_attributes_ref(gtkTextAttributes) ); 
  • src/gtkc/glibtypes.d

    old new  
    12151215/** 
    12161216 * The GSourceCallbackFuncs struct contains 
    12171217 * functions for managing callback objects. 
    1218  * ref() 
     1218 * ref_() 
    12191219 * Called when a reference is added to the callback object. 
    12201220 * unref() 
    12211221 * Called when a reference to the callback object is dropped. 
  • src/pango/PgCoverage.d

    old new  
    9292     * Returns: 
    9393     *  coverage 
    9494     */ 
    95     public static PangoCoverage* ref(PangoCoverage* coverage) 
     95    public static PangoCoverage* ref_(PangoCoverage* coverage) 
    9696    { 
    9797        // PangoCoverage* pango_coverage_ref (PangoCoverage *coverage); 
    9898        return pango_coverage_ref(coverage); 
  • src/pango/PgFontMetrics.d

    old new  
    191191     * Returns: 
    192192     *  metrics 
    193193     */ 
    194     public PangoFontMetrics* ref() 
     194    public PangoFontMetrics* ref_() 
    195195    { 
    196196        // PangoFontMetrics* pango_font_metrics_ref (PangoFontMetrics *metrics); 
    197197        return pango_font_metrics_ref(pangoFontMetrics); 
Note: See TracBrowser for help on using the browser.