summaryrefslogtreecommitdiff
path: root/c_fl_text_buffer.cpp
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2016-11-13 18:44:21 +1100
committerJed Barber <jjbarber@y7mail.com>2016-11-13 18:44:21 +1100
commit6fa5de9c6015c2d93aac1f3e379844fc36ff865f (patch)
tree585753829a21867c8733459a35671c14f899d5d3 /c_fl_text_buffer.cpp
parent0f9b0b9259ada50de7f8866f9591ce4ad3e7eadc (diff)
Added jump to feature
Diffstat (limited to 'c_fl_text_buffer.cpp')
-rw-r--r--c_fl_text_buffer.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/c_fl_text_buffer.cpp b/c_fl_text_buffer.cpp
index 8b0cde1..a28286f 100644
--- a/c_fl_text_buffer.cpp
+++ b/c_fl_text_buffer.cpp
@@ -69,3 +69,13 @@ void fl_text_buffer_select(TEXTBUFFER tb, int s, int e) {
reinterpret_cast<Fl_Text_Buffer*>(tb)->select(s, e);
}
+
+int fl_text_buffer_skip_lines(TEXTBUFFER tb, int s, int l) {
+ reinterpret_cast<Fl_Text_Buffer*>(tb)->skip_lines(s, l);
+}
+
+
+int fl_text_buffer_rewind_lines(TEXTBUFFER tb, int s, int l) {
+ reinterpret_cast<Fl_Text_Buffer*>(tb)->rewind_lines(s, l);
+}
+