summaryrefslogtreecommitdiff
path: root/documentation/common.html
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2002-03-24 17:26:00 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2002-03-24 17:26:00 +0000
commite07da88179cf18b98fd68a5b6515955d87729b6b (patch)
tree16ffc65569be76c817107e944fca1cff0cad48bc /documentation/common.html
parent1d7aef987ded55908ff4e24d97a8f936dd33f1f0 (diff)
Doco updates for 1.1.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2009 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 339c2c6fa..26dc69a6e 100644
--- a/documentation/common.html
+++ b/documentation/common.html
@@ -1,7 +1,7 @@
<HTML>
<BODY>
-<H1 ALIGN=RIGHT><A NAME="common">3 - Common Widgets and Attributes</A></H1>
+<H1 ALIGN="RIGHT"><A NAME="common">3 - Common Widgets and Attributes</A></H1>
<P>This chapter describes many of the widgets that are provided
with FLTK and covers how to query and set the standard
@@ -536,7 +536,7 @@ button-&gt;when(FL_WHEN_CHANGED | FL_WHEN_NOT_CHANGED);
<TT>callback()</TT> method of the widget can be a
pointer to the instance of your class.</P>
- <UL><PRE>
+<PRE>
class foo {
void my_callback(Widget *);
static void my_static_callback(Widget *w, foo *f) { f->my_callback(w); }
@@ -546,7 +546,7 @@ class foo {
...
w->callback(my_static_callback, this);
- </PRE></UL>
+</PRE>
</TD>
</TR>
</TABLE></CENTER>