summaryrefslogtreecommitdiff
path: root/FL/Fl_Browser.H
diff options
context:
space:
mode:
Diffstat (limited to 'FL/Fl_Browser.H')
-rw-r--r--FL/Fl_Browser.H3
1 files changed, 2 insertions, 1 deletions
diff --git a/FL/Fl_Browser.H b/FL/Fl_Browser.H
index ef5064171..7da8a7219 100644
--- a/FL/Fl_Browser.H
+++ b/FL/Fl_Browser.H
@@ -73,7 +73,8 @@ struct FL_BLINE;
Some common coding patterns used for working with Fl_Browser:
\code
// How to loop through all the items in the browser
- for ( int t=1; t<=browser->size(); t++ ) { // index 1 based..!
+ int t;
+ for (t =1; t<=browser->size(); t++ ) { // index 1 based..!
printf("item #%d, label='%s'\n", t, browser->text(t));
}
\endcode