summaryrefslogtreecommitdiff
path: root/documentation
diff options
context:
space:
mode:
Diffstat (limited to 'documentation')
-rw-r--r--documentation/Fl_File_Chooser.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/documentation/Fl_File_Chooser.html b/documentation/Fl_File_Chooser.html
index c25cad60e..b6559c04a 100644
--- a/documentation/Fl_File_Chooser.html
+++ b/documentation/Fl_File_Chooser.html
@@ -281,8 +281,8 @@ file names. The number of selected files is returned by
<P>This sample code loops through all selected files:
<PRE>
// Get list of filenames user selected from a MULTI chooser
-for ( int t=1; t<=chooser->count(); t++ ) {
- const char *filename = chooser->value(t);
+for ( int t=1; t&lt;=chooser-&gt;count(); t++ ) {
+ const char *filename = chooser-&gt;value(t);
..
}
</PRE>