From 30733d2d8d435b3e77a51a53b128cb5813becf0f Mon Sep 17 00:00:00 2001 From: Matthias Melcher Date: Sat, 2 Feb 2019 22:04:15 +0100 Subject: Added Fl_Input_::append() method (STR #2953). --- FL/Fl_Input_.H | 3 +++ 1 file changed, 3 insertions(+) (limited to 'FL') 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); -- cgit v1.2.3