diff -Naurp -- ref/documentation/Fl_File_Chooser.html current/documentation/Fl_File_Chooser.html --- ref/documentation/Fl_File_Chooser.html 2008-02-27 08:21:58.000000000 +0000 +++ current/documentation/Fl_File_Chooser.html 2008-03-09 09:34:37.000000000 +0000 @@ -281,8 +281,8 @@ file names. The number of selected files

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);
     ..
 }