From 14e6251b80f5dd39288e2468e0e2992a785e7fa4 Mon Sep 17 00:00:00 2001
From: Michael R Sweet When the wait() method is waiting
+ When the wait() 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 void buffer(Fl_Text_Buffer* buf);
-void buffer(Fl_Text_Buffer& buf);
+void buffer(Fl_Text_Buffer& buf);
Fl_Text_Buffer* buffer();
void cursor_style(int style);
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.
Fl_Image* Fl_Widget::deimage()
+void Fl_Widget::deimage(Fl_Image& a)
void Fl_Widget::deimage(Fl_Image* a)
-void Fl_Widget::deimage(Fl_Image& a)Fl_Image* Fl_Widget::image()
+void Fl_Widget::image(Fl_Image& a)
void Fl_Widget::image(Fl_Image* a)
-void Fl_Widget::image(Fl_Image& a)int Fl_Widget::handle(int)
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.
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:
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:
BMP, GIF, JPEG, PNG, XBM, and XPM image files can now be -- cgit v1.2.3