diff options
| author | Albrecht Schlosser <albrechts.fltk@online.de> | 2009-02-15 13:49:34 +0000 |
|---|---|---|
| committer | Albrecht Schlosser <albrechts.fltk@online.de> | 2009-02-15 13:49:34 +0000 |
| commit | e94b388899d16498f44afd1bb965a137345fcf6f (patch) | |
| tree | 40ab590cc767b05e5077e6e549bda117ad660f62 /src/Fl_Widget.cxx | |
| parent | 39c0a8a320a4d9799009f66ccd16288f361bc8f8 (diff) | |
renamed class Fl_Watch to Fl_Widget_Tracker, as discussed in fltk.development.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@6659 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Fl_Widget.cxx')
| -rw-r--r-- | src/Fl_Widget.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Fl_Widget.cxx b/src/Fl_Widget.cxx index 740dad6fd..e1fa13b79 100644 --- a/src/Fl_Widget.cxx +++ b/src/Fl_Widget.cxx @@ -296,13 +296,14 @@ Fl_Widget::copy_label(const char *a) { /** Calls the widget callback. Causes a widget to invoke its callback function with arbitrary arguments. + \param[in] o call the callback with \a o as the widget argument - \param[in] arg call the callback with \a arg as the user data argument + \param[in] arg use \a arg as the user data argument \see callback() */ void Fl_Widget::do_callback(Fl_Widget* o,void* arg) { - Fl_Watch wp(o); + Fl_Widget_Tracker wp(o); callback_(o,arg); if (wp.deleted()) return; if (callback_ != default_callback) |
