diff options
author | sr55 <[email protected]> | 2011-03-27 20:08:33 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2011-03-27 20:08:33 +0000 |
commit | abd251048b392e86041325c1561e7a9dcd8067c3 (patch) | |
tree | 6f18df3389db6994e5f454e423880f73c7a5e8d6 /win/CS/HandBrake.ApplicationServices/Services | |
parent | 5b0977cc04f8d6471905f4090c7f18e6240988da (diff) |
WinGui:
- Some move re factoring to push the logic code into the service library.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3885 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices/Services')
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Services/Encode.cs | 4 | ||||
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Services/ScanService.cs | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Services/Encode.cs b/win/CS/HandBrake.ApplicationServices/Services/Encode.cs index c7a00dda5..d64a4479e 100644 --- a/win/CS/HandBrake.ApplicationServices/Services/Encode.cs +++ b/win/CS/HandBrake.ApplicationServices/Services/Encode.cs @@ -60,7 +60,7 @@ namespace HandBrake.ApplicationServices.Services /// <summary>
/// The Log File Header
/// </summary>
- StringBuilder header = UtilityService.CreateCliLogHeader(null);
+ StringBuilder header = GeneralUtilities.CreateCliLogHeader(null);
#endregion
@@ -410,7 +410,7 @@ namespace HandBrake.ApplicationServices.Services if (File.Exists(logFile2)) File.Delete(logFile2);
fileWriter = new StreamWriter(logFile) { AutoFlush = true };
- fileWriter.WriteLine(UtilityService.CreateCliLogHeader(encodeQueueTask));
+ fileWriter.WriteLine(GeneralUtilities.CreateCliLogHeader(encodeQueueTask));
}
catch (Exception)
{
diff --git a/win/CS/HandBrake.ApplicationServices/Services/ScanService.cs b/win/CS/HandBrake.ApplicationServices/Services/ScanService.cs index 091b4478c..38dddd2d6 100644 --- a/win/CS/HandBrake.ApplicationServices/Services/ScanService.cs +++ b/win/CS/HandBrake.ApplicationServices/Services/ScanService.cs @@ -42,7 +42,7 @@ namespace HandBrake.ApplicationServices.Services /// <summary>
/// The Log File Header
/// </summary>
- StringBuilder header = UtilityService.CreateCliLogHeader(null);
+ StringBuilder header = GeneralUtilities.CreateCliLogHeader(null);
#endregion
@@ -223,7 +223,7 @@ namespace HandBrake.ApplicationServices.Services // Only write the log file to disk if it's less than 100MB.
if (this.readData.Buffer.Length < 100000000)
{
- scanLog.WriteLine(UtilityService.CreateCliLogHeader(null));
+ scanLog.WriteLine(GeneralUtilities.CreateCliLogHeader(null));
scanLog.Write(this.readData.Buffer);
logBuffer.AppendLine(this.readData.Buffer.ToString());
}
|