Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
pike
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pikelang
pike
Commits
a3ff0285
Commit
a3ff0285
authored
24 years ago
by
Per Hedbor
Browse files
Options
Downloads
Patches
Plain Diff
tree_item -> widget to avoid warnings
Rev: src/post_modules/GTK/source/gtktree.pre:1.3
parent
ae2371e3
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/post_modules/GTK/source/gtktree.pre
+6
-6
6 additions, 6 deletions
src/post_modules/GTK/source/gtktree.pre
with
6 additions
and
6 deletions
src/post_modules/GTK/source/gtktree.pre
+
6
−
6
View file @
a3ff0285
...
...
@@ -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)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment