From 830bb18b173a1c68720eb0df2ed860daea7d4c7e Mon Sep 17 00:00:00 2001 From: sr55 Date: Tue, 19 Nov 2013 22:30:26 +0000 Subject: WinGui: Removed the need for the user settings service from IEncode and IScan interfaces and various other places. This makes the API much simpler to use. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5897 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- .../Isolation/IsolatedEncodeService.cs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'win/CS/HandBrake.ApplicationServices/Isolation') diff --git a/win/CS/HandBrake.ApplicationServices/Isolation/IsolatedEncodeService.cs b/win/CS/HandBrake.ApplicationServices/Isolation/IsolatedEncodeService.cs index bc31544a4..32dc494d7 100644 --- a/win/CS/HandBrake.ApplicationServices/Isolation/IsolatedEncodeService.cs +++ b/win/CS/HandBrake.ApplicationServices/Isolation/IsolatedEncodeService.cs @@ -162,9 +162,12 @@ namespace HandBrake.ApplicationServices.Isolation /// /// The destination. /// - public void ProcessLogs(string destination) + /// + /// The configuration. + /// + public void ProcessLogs(string destination, HBConfiguration configuration) { - ThreadPool.QueueUserWorkItem(delegate { this.Service.ProcessEncodeLogs(destination); }); + ThreadPool.QueueUserWorkItem(delegate { this.Service.ProcessEncodeLogs(destination, configuration); }); } /// -- cgit v1.2.3