diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/adapad.adb | 4 | ||||
-rw-r--r-- | src/editor_windows.adb (renamed from src/editors.adb) | 4 | ||||
-rw-r--r-- | src/editor_windows.ads (renamed from src/editors.ads) | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/src/adapad.adb b/src/adapad.adb index 5dc36ca..20d5ba4 100644 --- a/src/adapad.adb +++ b/src/adapad.adb @@ -1,8 +1,8 @@ with FLTK; -with Editors; -use Editors; +with Editor_Windows; +use Editor_Windows; with FLTK.Text_Buffers; use FLTK.Text_Buffers; with FLTK.Widgets; diff --git a/src/editors.adb b/src/editor_windows.adb index 74ae629..7fdf744 100644 --- a/src/editors.adb +++ b/src/editor_windows.adb @@ -4,7 +4,7 @@ with FLTK.Enums; use FLTK.Enums; -package body Editors is +package body Editor_Windows is function Create @@ -114,5 +114,5 @@ package body Editors is end Delete; -end Editors; +end Editor_Windows; diff --git a/src/editors.ads b/src/editor_windows.ads index 2d4f599..3fefd4f 100644 --- a/src/editors.ads +++ b/src/editor_windows.ads @@ -10,7 +10,7 @@ private with FLTK.Widgets.Groups.Text_Displays.Text_Editors; private with FLTK.Widgets.Menus.Menu_Bars; -package Editors is +package Editor_Windows is type Editor_Window is new Double_Window with private; @@ -63,5 +63,5 @@ private end record; -end Editors; +end Editor_Windows; |