diff options
Diffstat (limited to 'src/fltk.adb')
-rw-r--r-- | src/fltk.adb | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/fltk.adb b/src/fltk.adb index 34366eb..4a4b70c 100644 --- a/src/fltk.adb +++ b/src/fltk.adb @@ -2,14 +2,12 @@ with - Interfaces.C, - System; + Interfaces.C; use type Interfaces.C.int, - Interfaces.C.unsigned_long, - System.Address; + Interfaces.C.unsigned_long; package body FLTK is @@ -85,14 +83,14 @@ package body FLTK is (Object : in Wrapper) return Boolean is begin - return Object.Void_Ptr /= System.Null_Address; + return Object.Void_Ptr /= Null_Pointer; end Is_Valid; procedure Initialize (This : in out Wrapper) is begin - This.Void_Ptr := System.Null_Address; + This.Void_Ptr := Null_Pointer; end Initialize; |