summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJedidiah Barber <contact@jedbarber.id.au>2025-01-20 00:47:01 +1300
committerJedidiah Barber <contact@jedbarber.id.au>2025-01-20 00:47:01 +1300
commit78bf43af446adf83fdc0554c63ccdb631836d916 (patch)
tree6be48026a6564c53369cc945cef14718c60a6b2e
parentbb03d6089f86108279830da00e30837f32f6bb41 (diff)
Bringing into line with FLTK binding modificationsHEADmaster
-rw-r--r--src/windows-editor.adb10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/windows-editor.adb b/src/windows-editor.adb
index 2a7b991..69fecdb 100644
--- a/src/windows-editor.adb
+++ b/src/windows-editor.adb
@@ -117,7 +117,7 @@ package body Windows.Editor is
procedure Undo
(This : in out Editor_Window) is
begin
- This.Editor.Undo;
+ This.Editor.KF_Undo;
end Undo;
@@ -126,7 +126,7 @@ package body Windows.Editor is
procedure Cut
(This : in out Editor_Window) is
begin
- This.Editor.Cut;
+ This.Editor.KF_Cut;
end Cut;
@@ -135,7 +135,7 @@ package body Windows.Editor is
procedure Copy
(This : in out Editor_Window) is
begin
- This.Editor.Copy;
+ This.Editor.KF_Copy;
end Copy;
@@ -144,7 +144,7 @@ package body Windows.Editor is
procedure Paste
(This : in out Editor_Window) is
begin
- This.Editor.Paste;
+ This.Editor.KF_Paste;
end Paste;
@@ -153,7 +153,7 @@ package body Windows.Editor is
procedure Delete
(This : in out Editor_Window) is
begin
- This.Editor.Delete;
+ This.Editor.KF_Delete;
end Delete;