aboutsummaryrefslogtreecommitdiff
path: root/body/fltk.adb
diff options
context:
space:
mode:
authorJedidiah Barber <contact@jedbarber.id.au>2025-03-23 13:10:56 +1300
committerJedidiah Barber <contact@jedbarber.id.au>2025-03-23 13:10:56 +1300
commit620c9cedb6880f28a2b3657a5d55d120bf83e9ba (patch)
tree237cae636dffff5809ac2aef52fabc36a8254209 /body/fltk.adb
parentf2352c6df585d817b3613145ec81446f917dcc21 (diff)
Improved project files, constant variables now constant
Diffstat (limited to 'body/fltk.adb')
-rw-r--r--body/fltk.adb9
1 files changed, 4 insertions, 5 deletions
diff --git a/body/fltk.adb b/body/fltk.adb
index c7a8fe4..49d9048 100644
--- a/body/fltk.adb
+++ b/body/fltk.adb
@@ -12,8 +12,7 @@ use type
Interfaces.C.int,
Interfaces.C.unsigned,
- Interfaces.C.unsigned_char,
- Interfaces.C.unsigned_long;
+ Interfaces.C.unsigned_char;
package body FLTK is
@@ -566,7 +565,7 @@ package body FLTK is
(Box : in Box_Kind)
return Box_Kind
is
- Result : Interfaces.C.int := fl_enum_box (Box_Kind'Pos (Box));
+ Result : constant Interfaces.C.int := fl_enum_box (Box_Kind'Pos (Box));
begin
return Box_Kind'Val (Result);
exception
@@ -580,7 +579,7 @@ package body FLTK is
(Box : in Box_Kind)
return Box_Kind
is
- Result : Interfaces.C.int := fl_enum_frame (Box_Kind'Pos (Box));
+ Result : constant Interfaces.C.int := fl_enum_frame (Box_Kind'Pos (Box));
begin
return Box_Kind'Val (Result);
exception
@@ -594,7 +593,7 @@ package body FLTK is
(Box : in Box_Kind)
return Box_Kind
is
- Result : Interfaces.C.int := fl_enum_down (Box_Kind'Pos (Box));
+ Result : constant Interfaces.C.int := fl_enum_down (Box_Kind'Pos (Box));
begin
return Box_Kind'Val (Result);
exception