diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2002-03-27 12:40:59 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2002-03-27 12:40:59 +0000 |
| commit | 14e6251b80f5dd39288e2468e0e2992a785e7fa4 (patch) | |
| tree | ecbac26ec7cdbb46c0f16351d773df3520284b29 | |
| parent | ba95cce4a87aa91afffa5dcef5e4daa117bb48d1 (diff) | |
More HTML fixed from Alexander.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2044 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
| -rw-r--r-- | documentation/Fl.html | 2 | ||||
| -rw-r--r-- | documentation/Fl_Text_Display.html | 2 | ||||
| -rw-r--r-- | documentation/Fl_Widget.html | 4 | ||||
| -rw-r--r-- | documentation/editor.html | 6 | ||||
| -rw-r--r-- | documentation/migration.html | 2 |
5 files changed, 8 insertions, 8 deletions
diff --git a/documentation/Fl.html b/documentation/Fl.html index 5129c11e4..118204ced 100644 --- a/documentation/Fl.html +++ b/documentation/Fl.html @@ -775,7 +775,7 @@ the threading support in FLTK. HREF="#Fl.unlock"><TT>unlock()</TT></A> when they are done accessing FLTK. -<P>When the <A HREF="#Fl.wait"><TT>wait()</TT> method is waiting +<P>When the <A HREF="#Fl.wait"><TT>wait()</TT></A> method is waiting for input or timeouts, child threads are given access to FLTK. Similarly, when the main thread needs to do processing, it will wait until all child threads have called <A diff --git a/documentation/Fl_Text_Display.html b/documentation/Fl_Text_Display.html index 1e74839e3..56cd69570 100644 --- a/documentation/Fl_Text_Display.html +++ b/documentation/Fl_Text_Display.html @@ -77,7 +77,7 @@ class. <H4><A NAME="Fl_Text_Display.buffer">void buffer(Fl_Text_Buffer* buf);<BR> -void buffer(Fl_Text_Buffer& buf);<BR> +void buffer(Fl_Text_Buffer& buf);<BR> Fl_Text_Buffer* buffer();</A></H4> <H4><A NAME="Fl_Text_Display.cursor_style">void cursor_style(int style);</A></H4> diff --git a/documentation/Fl_Widget.html b/documentation/Fl_Widget.html index 6a70e23bd..7e4a55425 100644 --- a/documentation/Fl_Widget.html +++ b/documentation/Fl_Widget.html @@ -314,11 +314,11 @@ accepted the focus. <H4><A name="Fl_Widget.deimage">Fl_Image* Fl_Widget::deimage()</A><BR> void Fl_Widget::deimage(Fl_Image* a)<BR> -void Fl_Widget::deimage(Fl_Image& a)</H4> +void Fl_Widget::deimage(Fl_Image& a)</H4> <H4><A name="Fl_Widget.image">Fl_Image* Fl_Widget::image()</A><BR> void Fl_Widget::image(Fl_Image* a)<BR> -void Fl_Widget::image(Fl_Image& a)</H4> +void Fl_Widget::image(Fl_Image& a)</H4> <H4><A name="Fl_Widget.handle">int Fl_Widget::handle(int)</A></H4> diff --git a/documentation/editor.html b/documentation/editor.html index 565ba5ee0..3fb5c43b0 100644 --- a/documentation/editor.html +++ b/documentation/editor.html @@ -173,7 +173,7 @@ need to define our callback functions.</P> <UL><PRE> void changed_cb(int, int nInserted, int nDeleted,int, const char*, void* v) { - if ((nInserted || nDeleted) && !loading) changed = 1; + if ((nInserted || nDeleted) && !loading) changed = 1; EditorWindow *w = (EditorWindow *)v; set_title(w); if (loading) w->editor->show_insert_position(); @@ -259,7 +259,7 @@ void find2_cb(Fl_Widget* w, void* v) { } int pos = e->editor->insert_position(); - int found = textbuf->search_forward(pos, e->search, &pos); + int found = textbuf->search_forward(pos, e->search, &pos); if (found) { // Found a match; select and update the position... textbuf->select(pos, pos+strlen(e->search)); @@ -330,7 +330,7 @@ from the program: <UL><PRE> void quit_cb(Fl_Widget*, void*) { - if (changed && !check_save()) + if (changed && !check_save()) return; exit(0); diff --git a/documentation/migration.html b/documentation/migration.html index def6c4b36..c7c31dba6 100644 --- a/documentation/migration.html +++ b/documentation/migration.html @@ -97,7 +97,7 @@ the old and new function names:</P> is now a proper base class, with the core image drawing functionality in the <A HREF="Fl_Bitmap.html"><TT>Fl_Bitmap</TT></A>, <A -HREF="Fl_Pixmap.html"><TT>Fl_Pixmap</TT>, and <A +HREF="Fl_Pixmap.html"><TT>Fl_Pixmap</TT></A>, and <A HREF="Fl_RGB_Image.html"><TT>Fl_RGB_Image</TT></A> classes. <P>BMP, GIF, JPEG, PNG, XBM, and XPM image files can now be |
