From 620c9cedb6880f28a2b3657a5d55d120bf83e9ba Mon Sep 17 00:00:00 2001
From: Jedidiah Barber <contact@jedbarber.id.au>
Date: Sun, 23 Mar 2025 13:10:56 +1300
Subject: Improved project files, constant variables now constant

---
 body/fltk-help_dialogs.adb | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

(limited to 'body/fltk-help_dialogs.adb')

diff --git a/body/fltk-help_dialogs.adb b/body/fltk-help_dialogs.adb
index 6348527..d316662 100644
--- a/body/fltk-help_dialogs.adb
+++ b/body/fltk-help_dialogs.adb
@@ -282,7 +282,8 @@ package body FLTK.Help_Dialogs is
            (This : in Help_Dialog)
         return String
     is
-        Raw_Chars : Interfaces.C.Strings.chars_ptr := fl_help_dialog_get_value (This.Void_Ptr);
+        Raw_Chars : constant Interfaces.C.Strings.chars_ptr :=
+            fl_help_dialog_get_value (This.Void_Ptr);
         use type Interfaces.C.Strings.chars_ptr;
     begin
         if Raw_Chars = Interfaces.C.Strings.Null_Ptr then
-- 
cgit