From df843c7fe48f33d25981d03975e670a3e7159031 Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Sun, 7 May 2017 12:04:33 +1000 Subject: Further code cleanup --- src/c_fl_text_editor.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/c_fl_text_editor.cpp') diff --git a/src/c_fl_text_editor.cpp b/src/c_fl_text_editor.cpp index a99774f..156d439 100644 --- a/src/c_fl_text_editor.cpp +++ b/src/c_fl_text_editor.cpp @@ -58,31 +58,31 @@ void free_fl_text_editor(TEXTEDITOR te) { void fl_text_editor_undo(TEXTEDITOR te) { - My_Text_Editor::kf_undo(0, reinterpret_cast(te)); + Fl_Text_Editor::kf_undo(0, reinterpret_cast(te)); } void fl_text_editor_cut(TEXTEDITOR te) { - My_Text_Editor::kf_cut(0, reinterpret_cast(te)); + Fl_Text_Editor::kf_cut(0, reinterpret_cast(te)); } void fl_text_editor_copy(TEXTEDITOR te) { - My_Text_Editor::kf_copy(0, reinterpret_cast(te)); + Fl_Text_Editor::kf_copy(0, reinterpret_cast(te)); } void fl_text_editor_paste(TEXTEDITOR te) { - My_Text_Editor::kf_paste(0, reinterpret_cast(te)); + Fl_Text_Editor::kf_paste(0, reinterpret_cast(te)); } void fl_text_editor_delete(TEXTEDITOR te) { - My_Text_Editor::kf_delete(0, reinterpret_cast(te)); + Fl_Text_Editor::kf_delete(0, reinterpret_cast(te)); } void fl_text_editor_remove_key_binding(TEXTEDITOR te, unsigned int k, unsigned long m) { - reinterpret_cast(te)->remove_key_binding(k, m); + reinterpret_cast(te)->remove_key_binding(k, m); } -- cgit