Changeset 537

Show
Ignore:
Timestamp:
07/14/08 17:51:56 (3 months ago)
Author:
Mike Wey
Message:

missed 2 int's

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/wrap/APILookupGtk.txt

    r536 r537  
    29782978     *  TRUE if a row exists at that coordinate. 
    29792979     */ 
    2980     int getPathAtPos(gint x, gint y, inout TreePath path, inout TreeViewColumn column, out gint cellX, out gint cellY) 
     2980    bool getPathAtPos(gint x, gint y, inout TreePath path, inout TreeViewColumn column, out gint cellX, out gint cellY) 
    29812981    { 
    29822982        GtkTreePath* p = (path is null) ? null : path.getTreePathStruct();  
    29832983        GtkTreeViewColumn* c = (column is null) ? null : column.getTreeViewColumnStruct(); 
    29842984 
    2985         int result = gtk_tree_view_get_path_at_pos(gtkTreeView, x, y, &p, &c, &cellX, &cellY) 
     2985        bool result = gtk_tree_view_get_path_at_pos(gtkTreeView, x, y, &p, &c, &cellX, &cellY) 
    29862986            == 0 ? false : true; 
    29872987