From 9f77104874b2117430c98dbb4f42a1f77b31e41c Mon Sep 17 00:00:00 2001 From: insideq Date: Thu, 4 Apr 2024 12:24:18 +0400 Subject: [PATCH] =?UTF-8?q?=D0=97=D0=B0=D0=BC=D0=B5=D0=BD=D0=B8=D0=BB=20?= =?UTF-8?q?=D0=B8=D1=81=D0=BF=D0=BE=D0=BB=D1=8C=D0=B7=D0=BE=D0=B2=D0=B0?= =?UTF-8?q?=D0=BD=D0=B8=D0=B5=20=D1=81=D0=BE=D0=B1=D1=81=D1=82=D0=B2=D0=B5?= =?UTF-8?q?=D0=BD=D0=BD=D0=BE=D0=B3=D0=BE=20=D0=B4=D0=B5=D0=BB=D0=B5=D0=B3?= =?UTF-8?q?=D0=B0=D1=82=D0=B0=20=D0=BD=D0=B0=20=D0=B2=D1=81=D1=82=D1=80?= =?UTF-8?q?=D0=BE=D0=B5=D0=BD=D0=BD=D1=8B=D0=B9=20=D0=B4=D0=B5=D0=BB=D0=B5?= =?UTF-8?q?=D0=B3=D0=B0=D1=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ProjectExcavator/ProjectExcavator/FormExcavatorConfig.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ProjectExcavator/ProjectExcavator/FormExcavatorConfig.cs b/ProjectExcavator/ProjectExcavator/FormExcavatorConfig.cs index 5eb8f8c..d71228c 100644 --- a/ProjectExcavator/ProjectExcavator/FormExcavatorConfig.cs +++ b/ProjectExcavator/ProjectExcavator/FormExcavatorConfig.cs @@ -16,7 +16,7 @@ public partial class FormExcavatorConfig : Form /// /// Событие для передачи объекта /// - private event ExcavatorDelegate? ExcavatorDelegate; + private event Action ExcavatorDelegate; /// /// Конструктор @@ -42,7 +42,7 @@ public partial class FormExcavatorConfig : Form /// Привязка внешнего метода к событию /// /// - public void AddEvent(ExcavatorDelegate excavatorDelegate) + public void AddEvent(Action excavatorDelegate) { ExcavatorDelegate += excavatorDelegate; }