summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Melcher <fltk@matthiasm.com>2008-03-09 14:14:06 +0000
committerMatthias Melcher <fltk@matthiasm.com>2008-03-09 14:14:06 +0000
commit75693af5dae5dfecefd7d44ee507011326adc56b (patch)
tree72893e2f0ad9101ffd3a1facd975cd5820d9272f
parentefa4ad3ad7f4f1c8f06a3eba8eef39e38174258c (diff)
Fixed unescape HTML in docs: STR 1892
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@6064 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
-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>