Fixed unescape HTML in docs: STR 1892

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@6064 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Matthias Melcher 2008-03-09 14:14:06 +00:00
parent efa4ad3ad7
commit 75693af5da

View File

@ -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>