From 4c338a533ff16675a8f7f3646b9aacc18a6ceb00 Mon Sep 17 00:00:00 2001 From: Matthias Melcher Date: Tue, 13 Dec 2005 00:21:06 +0000 Subject: [PATCH] STR #1106: fixed documentation error git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4699 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- documentation/Fl.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/documentation/Fl.html b/documentation/Fl.html index 66e0ab353..3b3f7e790 100644 --- a/documentation/Fl.html +++ b/documentation/Fl.html @@ -173,8 +173,8 @@ main() { } -

void add_fd(int fd, int when, void (*cb)(int,void*),void* =0);
-void add_fd(int fd, void (*cb)(int, void*), void* = 0);

+

void add_fd(int fd, void (*cb)(int,void*),void* =0);
+void add_fd(int fd, int when, void (*cb)(int, void*), void* = 0);

Add file descriptor fd to listen to. When the fd becomes ready for reading Fl::wait() will call the callback