diff options
| author | Albrecht Schlosser <albrechts.fltk@online.de> | 2024-11-01 17:48:13 +0100 |
|---|---|---|
| committer | Albrecht Schlosser <albrechts.fltk@online.de> | 2024-11-01 18:24:06 +0100 |
| commit | abf28f0b70f10cb9a37ff64478e33b4fcc11fef7 (patch) | |
| tree | ebdd444d83aeecd11440c1e2cd4bc64964ad89fb /FL/Fl_Input_.H | |
| parent | 9bcef81cae01517f6298827630e7d53b4065fcf5 (diff) | |
Improve and clarify documentation
Diffstat (limited to 'FL/Fl_Input_.H')
| -rw-r--r-- | FL/Fl_Input_.H | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/FL/Fl_Input_.H b/FL/Fl_Input_.H index e7087e418..2e87b115d 100644 --- a/FL/Fl_Input_.H +++ b/FL/Fl_Input_.H @@ -304,7 +304,7 @@ public: \see insert_position(int, int) */ int insert_position() const { return position_; } - FL_DEPRECATED("in 1.4.0 - use insert_position() instead", + FL_DEPRECATED("since 1.4.0 - use insert_position() instead", int position() const ) { return insert_position(); } /** Gets the current selection mark. @@ -313,7 +313,7 @@ public: /* Sets the index for the cursor and mark. */ int insert_position(int p, int m); - FL_DEPRECATED("in 1.4.0 - use insert_position(p, m) or Fl_Widget::position(x, y) instead", + FL_DEPRECATED("since 1.4.0 - use insert_position(p, m) or Fl_Widget::position(x, y) instead", int position(int p, int m)) { return insert_position(p, m); } /** Sets the cursor position and mark. @@ -323,7 +323,7 @@ public: \see insert_position(int, int), insert_position(), mark(int) */ int insert_position(int p) { return insert_position(p, p); } - FL_DEPRECATED("in 1.4.0 - use insert_position(p) instead", + FL_DEPRECATED("since 1.4.0 - use insert_position(p) instead", int position(int p)) { return insert_position(p); } /** Sets the current selection mark. |
