diff options
author | Jed Barber <jjbarber@y7mail.com> | 2016-09-19 18:48:47 +1000 |
---|---|---|
committer | Jed Barber <jjbarber@y7mail.com> | 2016-09-19 18:48:47 +1000 |
commit | b709843ae66a4348746d6a54114c99dd00ebdb74 (patch) | |
tree | 37d59a8f561577478f4fc60255bb7e5789bdd43d /src/editors.ads | |
parent | 395e2de5b0d834091637820fc04d731721c771b7 (diff) |
All File/Edit functions working, just need to add Search/About menu stuff
Diffstat (limited to 'src/editors.ads')
-rw-r--r-- | src/editors.ads | 19 |
1 files changed, 5 insertions, 14 deletions
diff --git a/src/editors.ads b/src/editors.ads index c3b6655..2d4f599 100644 --- a/src/editors.ads +++ b/src/editors.ads @@ -42,20 +42,11 @@ package Editors is return Menu_Cursor; - procedure Cut - (This : in out Editor_Window); - - - procedure Copy - (This : in out Editor_Window); - - - procedure Paste - (This : in out Editor_Window); - - - procedure Delete - (This : in out Editor_Window); + procedure Undo (This : in out Editor_Window); + procedure Cut (This : in out Editor_Window); + procedure Copy (This : in out Editor_Window); + procedure Paste (This : in out Editor_Window); + procedure Delete (This : in out Editor_Window); private |