Skip to content
Snippets Groups Projects
Commit a3ff0285 authored by Per Hedbor's avatar Per Hedbor
Browse files

tree_item -> widget to avoid warnings

Rev: src/post_modules/GTK/source/gtktree.pre:1.3
parent ae2371e3
Branches
Tags
No related merge requests found
......@@ -11,11 +11,11 @@ signal select_child;
signal unselect_child;
void create();
// Used to create a new tree widget.
void append( tree_item child );
void append( widget child );
// Add a new tree item at insertion point
void prepend( tree_item child );
void prepend( widget child );
// Add a new tree item from end (same as 'add')
void insert( tree_item child, int pos );
void insert( widget child, int pos );
// Insert a new tree item at the specified position
void clear_items( int start, int end );
// Remove the items from position start to position end from a Tree.
......@@ -23,11 +23,11 @@ void select_item( int pos );
// Select a specified (by index) item
void unselect_item( int pos );
// Unselect a specified (by index) item
void select_child( tree_item child );
void select_child( widget child );
// Select a specified (by object) item
void unselect_child( tree_item child );
void unselect_child( widget child );
// Unselect a specified (by object) item
int child_position( tree_item child );
int child_position( widget child );
// Unselect a specified (by object) item
void set_selection_mode( int selection_mode );
// One of CONST(GTK_SELECTION)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment