From 336996c7abb716844d3389df7bd7779298af3dcf Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Sun, 6 May 2001 16:25:05 +0000 Subject: 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 --- documentation/subclassing.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'documentation/subclassing.html') 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() & 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() & (FL_DAMAGE_ALL | 1)) draw_part1(); + if (damage() & (FL_DAMAGE_ALL | 2)) draw_part2(); + if (damage() & (FL_DAMAGE_ALL | 4)) draw_part3(); }

void Fl_Widget::draw_box() const -- cgit v1.2.3