Doco fix (STR #960)

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4481 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Michael R Sweet 2005-08-08 02:41:59 +00:00
parent 4fa1a3edb4
commit 4d2333525e
2 changed files with 10 additions and 9 deletions

View File

@ -1,7 +1,7 @@
CHANGES IN FLTK 1.1.7
- Documentation fixes (STR #648, STR #692, STR #730, STR
#744, STR #745, STR #942, STR #931)
#744, STR #745, STR #931, STR #942, STR #960)
- Fl_GIF_Image did not handle images with an incorrect
number of data bits (STR #914)
- Fixed some plastic drawing artifacts (STR #906)

View File

@ -944,15 +944,16 @@ However the colors may flash as you move the cursor between windows.
<P>This does nothing if the current visual is not colormapped.
<H4><A NAME="Fl.paste">void paste(Fl_Widget &amp;receiver);</A></H4>
<H4><A NAME="Fl.paste">void paste(Fl_Widget &amp;receiver, int clipboard=0);</A></H4>
<P>Set things up so the receiver widget will be called with an <A href="enumerations.html#events">
<tt>FL_PASTE</tt></A> event some time in the future. The reciever
should be prepared to be called <I>directly</I> by this, or for it to
happen <I>later</I>, or possibly <I>not at all</I>. This allows the
window system to take as long as necessary to retrieve the paste buffer
(or even to screw up completely) without complex and error-prone
synchronization code in FLTK.
<P>Set things up so the receiver widget will be called with an <A
href="enumerations.html#events"> <tt>FL_PASTE</tt></A> event some
time in the future for the specified clipboard. The reciever
should be prepared to be called <I>directly</I> by this, or for
it to happen <I>later</I>, or possibly <I>not at all</I>. This
allows the window system to take as long as necessary to retrieve
the paste buffer (or even to screw up completely) without complex
and error-prone synchronization code in FLTK.
<H4><A NAME="Fl.pushed">Fl_Widget* pushed();<BR>
void pushed(Fl_Widget*);</A></H4>