diff options
| author | Matthias Melcher <git@matthiasm.com> | 2019-02-02 22:04:15 +0100 |
|---|---|---|
| committer | Matthias Melcher <git@matthiasm.com> | 2019-02-02 22:04:15 +0100 |
| commit | 30733d2d8d435b3e77a51a53b128cb5813becf0f (patch) | |
| tree | 97976315c0e486ae7208b014c2414e6bbbe4ab3a /FL/Fl_Input_.H | |
| parent | 5062b5a01041772e123f30b9e65de95d82d865a7 (diff) | |
Added Fl_Input_::append() method (STR #2953).
Diffstat (limited to 'FL/Fl_Input_.H')
| -rw-r--r-- | FL/Fl_Input_.H | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/FL/Fl_Input_.H b/FL/Fl_Input_.H index 99a396506..c56b802b6 100644 --- a/FL/Fl_Input_.H +++ b/FL/Fl_Input_.H @@ -359,6 +359,9 @@ public: */ int insert(const char* t, int l=0){return replace(position_, mark_, t, l);} + /* Append text at the end. */ + int append(const char* t, int l=0, char keep_selection=0); + /* Put the current selection into the clipboard. */ int copy(int clipboard); |
