From 75693af5dae5dfecefd7d44ee507011326adc56b Mon Sep 17 00:00:00 2001 From: Matthias Melcher Date: Sun, 9 Mar 2008 14:14:06 +0000 Subject: Fixed unescape HTML in docs: STR 1892 git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@6064 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- documentation/Fl_File_Chooser.html | 4 ++-- 1 file 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

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