summaryrefslogtreecommitdiff
path: root/fltk-callbacks.adb
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2016-09-06 00:12:05 +1000
committerJed Barber <jjbarber@y7mail.com>2016-09-06 00:12:05 +1000
commitdac7e747e5c61d78deffdccc986d202e9f0d63bb (patch)
treed0c55473ab3feab222b3990c7e8657ebd99f1475 /fltk-callbacks.adb
parent501151d99cc8ec71eae7a3770ee3ba71c34cab18 (diff)
Getting things back into a compilable order
Diffstat (limited to 'fltk-callbacks.adb')
-rw-r--r--fltk-callbacks.adb4
1 files changed, 2 insertions, 2 deletions
diff --git a/fltk-callbacks.adb b/fltk-callbacks.adb
index 717888d..193509b 100644
--- a/fltk-callbacks.adb
+++ b/fltk-callbacks.adb
@@ -4,10 +4,10 @@ package body FLTK.Callbacks is
function Create
- (Call : in access procedure)
+ (Call : access procedure)
return Callback is
begin
- return null record;
+ return This : Callback;
end Create;