summaryrefslogtreecommitdiff
path: root/documentation/common.html
diff options
context:
space:
mode:
authorMatthias Melcher <fltk@matthiasm.com>2007-05-17 15:52:15 +0000
committerMatthias Melcher <fltk@matthiasm.com>2007-05-17 15:52:15 +0000
commitac18bf760907d148490594a1a38dfa311978fcef (patch)
tree3bec0bb159d3fef35edbf816a4cd7980760c76bb /documentation/common.html
parent04ced5396e67c19ea808b64c851f8fa039e8eb95 (diff)
Replaced '>' with '&gt;' in the documentation where appropriate (STR# 1682, 1684, 1685)
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@5838 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'documentation/common.html')
-rw-r--r--documentation/common.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/documentation/common.html b/documentation/common.html
index 18fbc22c5..6462bc24f 100644
--- a/documentation/common.html
+++ b/documentation/common.html
@@ -406,7 +406,7 @@ sign. Figure 3-4 shows the available symbols.</P>
</UL>
<P>Thus, to show a very large arrow pointing downward you would use the
-label string "@+92->".
+label string "@+92-&gt;".
<H3>align()</H3>
@@ -635,13 +635,13 @@ button-&gt;when(FL_WHEN_CHANGED | FL_WHEN_NOT_CHANGED);
<PRE>
class Foo {
void my_callback(Fl_Widget *w);
- static void my_static_callback(Fl_Widget *w, void *f) { ((Foo *)f)->my_callback(w); }
+ static void my_static_callback(Fl_Widget *w, void *f) { ((Foo *)f)-&gt;my_callback(w); }
...
}
...
-w->callback(my_static_callback, (void *)this);
+w-&gt;callback(my_static_callback, (void *)this);
</PRE>
</TD>
</TR>