diff options
| author | Matthias Melcher <github@matthiasm.com> | 2023-02-10 16:27:42 +0100 |
|---|---|---|
| committer | Matthias Melcher <github@matthiasm.com> | 2023-02-10 16:29:14 +0100 |
| commit | 4440e356934dad02e6f632e7bf68c916b4f2f1dc (patch) | |
| tree | fa4735d0880b5c064e32dc337c058def91c845b9 /FL/Fl_Input_.H | |
| parent | fc9d0a23af137aa23a906196c925ba92249e0d50 (diff) | |
Deprecated warnings wording adapted
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 e1748e3b0..d89a341bc 100644 --- a/FL/Fl_Input_.H +++ b/FL/Fl_Input_.H @@ -285,7 +285,7 @@ public: \see insert_position(int, int) */ int insert_position() const { return position_; } - FL_DEPRECATED("Please use insert_position() instead (since 1.4.0).", + FL_DEPRECATED("in 1.4.0 - use insert_position() instead", int position() const ) { return insert_position(); } /** Gets the current selection mark. @@ -294,7 +294,7 @@ public: /* Sets the index for the cursor and mark. */ int insert_position(int p, int m); - FL_DEPRECATED("Please use insert_position(p, m) or Fl_Widget::position(x, y) instead (since 1.4.0).", + FL_DEPRECATED("in 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. @@ -304,7 +304,7 @@ public: \see insert_position(int, int), insert_position(), mark(int) */ int insert_position(int p) { return insert_position(p, p); } - FL_DEPRECATED("Please use insert_position(p) instead (since 1.4.0).", + FL_DEPRECATED("in 1.4.0 - use insert_position(p) instead", int position(int p)) { return insert_position(p); } /** Sets the current selection mark. |
