summaryrefslogtreecommitdiff
path: root/src/fltk_binding/c_fl_text_buffer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/fltk_binding/c_fl_text_buffer.cpp')
-rw-r--r--src/fltk_binding/c_fl_text_buffer.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/fltk_binding/c_fl_text_buffer.cpp b/src/fltk_binding/c_fl_text_buffer.cpp
index 8b0cde1..a28286f 100644
--- a/src/fltk_binding/c_fl_text_buffer.cpp
+++ b/src/fltk_binding/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);
+}
+