summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2016-09-19 18:53:14 +1000
committerJed Barber <jjbarber@y7mail.com>2016-09-19 18:53:14 +1000
commit7a14ee099c2fd382c2951627bf43e3fc507181f4 (patch)
tree9b749987f9ac87bcda46671b87bd6a9308a726f8
parentb709843ae66a4348746d6a54114c99dd00ebdb74 (diff)
Editors.adb/ads now known as Editor_Windows.adb/ads in preparation for more window types
-rw-r--r--src/adapad.adb4
-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;