From f925d10d2b83a4ea8ad6b51c812e057778d34e88 Mon Sep 17 00:00:00 2001 From: Michael Bucari-Tovo Date: Thu, 12 Aug 2021 18:02:49 -0600 Subject: [PATCH] Renamed. --- .../BookLiberation/BaseForms/LiberationBaseForm.cs | 2 +- .../BookLiberation/ProcessorAutomationController.cs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/LibationWinForms/BookLiberation/BaseForms/LiberationBaseForm.cs b/LibationWinForms/BookLiberation/BaseForms/LiberationBaseForm.cs index c1c4bef2..2fed2e82 100644 --- a/LibationWinForms/BookLiberation/BaseForms/LiberationBaseForm.cs +++ b/LibationWinForms/BookLiberation/BaseForms/LiberationBaseForm.cs @@ -24,7 +24,7 @@ namespace LibationWinForms.BookLiberation.BaseForms SyncContext = SynchronizationContext.Current; } - public void RegisterLiberation(IFileLiberator fileLiberator, LogMe logMe = null) + public void RegisterFileLiberator(IFileLiberator fileLiberator, LogMe logMe = null) { //IFileLiberator must at least be IStreamable, otherwise the Form won't ever Show() if (fileLiberator is null || fileLiberator is not IStreamable streamable) return; diff --git a/LibationWinForms/BookLiberation/ProcessorAutomationController.cs b/LibationWinForms/BookLiberation/ProcessorAutomationController.cs index 04359a42..126f1321 100644 --- a/LibationWinForms/BookLiberation/ProcessorAutomationController.cs +++ b/LibationWinForms/BookLiberation/ProcessorAutomationController.cs @@ -143,7 +143,7 @@ namespace LibationWinForms.BookLiberation strProc.Begin += (sender, libraryBook) => { var processForm = new TForm(); - processForm.RegisterLiberation(strProc, logMe); + processForm.RegisterFileLiberator(strProc, logMe); processForm.OnBegin(sender, libraryBook); }; @@ -167,7 +167,7 @@ namespace LibationWinForms.BookLiberation var streamable = new TStr(); var streamForm = new TForm(); - streamForm.RegisterLiberation(streamable); + streamForm.RegisterFileLiberator(streamable); if (completedAction != null) streamable.StreamingCompleted += completedAction;