diff options
author | Jedidiah Barber <contact@jedbarber.id.au> | 2025-01-21 00:53:56 +1300 |
---|---|---|
committer | Jedidiah Barber <contact@jedbarber.id.au> | 2025-01-21 00:53:56 +1300 |
commit | f9e453e3d456514066e8ecbed9fbac93a588a0d0 (patch) | |
tree | 06587afde830fb324d5ab7372f0f1686c4fd993a /src/fltk-file_choosers.ads | |
parent | 67a43ef89ba41ac32b86cda7396c16fffaf691b3 (diff) |
Using the type method is now more consistent
Diffstat (limited to 'src/fltk-file_choosers.ads')
-rw-r--r-- | src/fltk-file_choosers.ads | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/fltk-file_choosers.ads b/src/fltk-file_choosers.ads index cea7b36..927ae04 100644 --- a/src/fltk-file_choosers.ads +++ b/src/fltk-file_choosers.ads @@ -238,11 +238,11 @@ package FLTK.File_Choosers is (This : in out File_Chooser; Size : in Font_Size); - function Get_Chooser_Kind + function Get_Kind (This : in File_Chooser) return Chooser_Kind; - procedure Set_Chooser_Kind + procedure Set_Kind (This : in out File_Chooser; Kind : in Chooser_Kind); @@ -379,7 +379,7 @@ private pragma Inline (Set_Text_Font); pragma Inline (Get_Text_Size); pragma Inline (Set_Text_Size); - pragma Inline (Set_Chooser_Kind); + pragma Inline (Set_Kind); pragma Inline (Number_Selected); pragma Inline (Get_Filter_Index); |