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
This sample code loops through all selected files:
// 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<=chooser->count(); t++ ) {
+ const char *filename = chooser->value(t);
..
}