diff options
Diffstat (limited to 'src/fl_cursor.cxx')
| -rw-r--r-- | src/fl_cursor.cxx | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/fl_cursor.cxx b/src/fl_cursor.cxx index 71a9db5ea..5375c4f30 100644 --- a/src/fl_cursor.cxx +++ b/src/fl_cursor.cxx @@ -174,11 +174,18 @@ void Fl_Window::cursor(const Fl_RGB_Image *image, int hotx, int hoty) { cursor(FL_CURSOR_DEFAULT); } -/* For back compatibility only. */ +/** + For back compatibility only. + Same as Fl_Window::cursor(Fl_Cursor) +*/ void Fl_Window::cursor(Fl_Cursor c, Fl_Color, Fl_Color) { cursor(c); }; +/** + For back compatibility only. + same as Fl_Window::default_cursor(Fl_Cursor) +*/ void Fl_Window::default_cursor(Fl_Cursor c, Fl_Color, Fl_Color) { default_cursor(c); }; |
