diff options
| author | maxim nikonov <maxim.nikonov@hqo.co> | 2026-02-06 18:12:40 +0500 |
|---|---|---|
| committer | maxim nikonov <maxim.nikonov@hqo.co> | 2026-02-06 18:12:40 +0500 |
| commit | b4995f979d127cea667b4e2b71c91e9db4ab52ef (patch) | |
| tree | fbebc775e10932bace8d6a7c3481b1ba200c64db /FL/Fl_Tree_Item.H | |
| parent | 9575eb0a1ffa8150f70f88b5f6b55f342c3c0088 (diff) | |
wip
Diffstat (limited to 'FL/Fl_Tree_Item.H')
| -rw-r--r-- | FL/Fl_Tree_Item.H | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/FL/Fl_Tree_Item.H b/FL/Fl_Tree_Item.H index ba5188219..3290bf523 100644 --- a/FL/Fl_Tree_Item.H +++ b/FL/Fl_Tree_Item.H @@ -323,7 +323,8 @@ public: select(); ++count; } - for ( int t=0; t<children(); t++ ) { + int t; + for (t =0; t<children(); t++ ) { count += child(t)->select_all(); } return(count); @@ -342,7 +343,8 @@ public: deselect(); ++count; } - for ( int t=0; t<children(); t++ ) { + int t; + for (t =0; t<children(); t++ ) { count += child(t)->deselect_all(); } return(count); |
