summaryrefslogtreecommitdiff
path: root/src/fl_cursor.cxx
diff options
context:
space:
mode:
authorManolo Gouy <Manolo>2014-10-29 15:53:52 +0000
committerManolo Gouy <Manolo>2014-10-29 15:53:52 +0000
commite292620aad3a78bb4ca2e4032e1799644aa9d332 (patch)
tree3e5d9477702ac165a68e6944c99bb55f9bc1c19f /src/fl_cursor.cxx
parent11ef7ee9e6b3c39a7052f896da96369dc098d8ae (diff)
Added missing Doxygen documentation for 4 Fl_Window member functions.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@10405 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/fl_cursor.cxx')
-rw-r--r--src/fl_cursor.cxx9
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);
};