summaryrefslogtreecommitdiff
path: root/documentation/subclassing.html
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2001-05-06 16:25:05 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2001-05-06 16:25:05 +0000
commit336996c7abb716844d3389df7bd7779298af3dcf (patch)
tree9afcd37ade9fcc63de2a0cfbf9962787ffff52d4 /documentation/subclassing.html
parentecfb817427bfe9eb3fe961bef2a25c36b73453c4 (diff)
Update documentation files to eliminate most of the warnings
and errors reported by HTML Tidy. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.0@1454 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'documentation/subclassing.html')
-rw-r--r--documentation/subclassing.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/documentation/subclassing.html b/documentation/subclassing.html
index 5d061a1c1..15bf6179f 100644
--- a/documentation/subclassing.html
+++ b/documentation/subclassing.html
@@ -100,13 +100,13 @@ MyClass::handle(int event) {
}
MyClass::draw() {
- if (damage() & FL_DAMAGE_ALL) {
+ if (damage() &amp; FL_DAMAGE_ALL) {
... draw frame/box and other static stuff ...
}
- if (damage() & (FL_DAMAGE_ALL | 1)) draw_part1();
- if (damage() & (FL_DAMAGE_ALL | 2)) draw_part2();
- if (damage() & (FL_DAMAGE_ALL | 4)) draw_part3();
+ if (damage() &amp; (FL_DAMAGE_ALL | 1)) draw_part1();
+ if (damage() &amp; (FL_DAMAGE_ALL | 2)) draw_part2();
+ if (damage() &amp; (FL_DAMAGE_ALL | 4)) draw_part3();
}
</PRE></UL>
<H4><A name=draw_box>void Fl_Widget::draw_box() const