diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/windows-editor.adb | 10 |
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; |