summaryrefslogtreecommitdiff
path: root/src/windows-replace.adb
diff options
context:
space:
mode:
Diffstat (limited to 'src/windows-replace.adb')
-rw-r--r--src/windows-replace.adb4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/windows-replace.adb b/src/windows-replace.adb
index 5db325a..a0bdcff 100644
--- a/src/windows-replace.adb
+++ b/src/windows-replace.adb
@@ -32,7 +32,7 @@ package body Windows.Replace is
Dialog : access Replace_Window := Replace_Window_Access (Item.Parent);
begin
if Dialog.Callback /= null then
- Dialog.Callback.Call
+ Dialog.Callback.all
(Dialog.Find_What.Get_Value,
Dialog.Replace_With.Get_Value,
Dialog.Match_Case.Get_State = BU.On,
@@ -133,7 +133,7 @@ package body Windows.Replace is
procedure Set_Replace_Callback
(This : in out Replace_Window;
- Func : not null access Replace_Callback'Class) is
+ Func : in Replace_Callback) is
begin
This.Callback := Func;
end Set_Replace_Callback;