diff options
author | sr55 <[email protected]> | 2013-03-19 21:48:51 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2013-03-19 21:48:51 +0000 |
commit | 97a88523f2b6352847d705cbf527fd5ee0f5247b (patch) | |
tree | cbab432a54aa755707eaf4b33632e36cc913da66 /win/CS/HandBrake.ApplicationServices/Services/Base/EncodeBase.cs | |
parent | fd9089288f0644a4ce568b2e17abffebffeb65db (diff) |
WinGui: Part 1: Fix numerous issues around app versioning. Hopefully the GUI and CLI will no longer be out of sync.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5350 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices/Services/Base/EncodeBase.cs')
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Services/Base/EncodeBase.cs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Services/Base/EncodeBase.cs b/win/CS/HandBrake.ApplicationServices/Services/Base/EncodeBase.cs index 555b004f2..db4ef3abd 100644 --- a/win/CS/HandBrake.ApplicationServices/Services/Base/EncodeBase.cs +++ b/win/CS/HandBrake.ApplicationServices/Services/Base/EncodeBase.cs @@ -66,9 +66,7 @@ namespace HandBrake.ApplicationServices.Services.Base this.userSettingService = userSettingService;
this.logBuffer = new StringBuilder();
header =
- GeneralUtilities.CreateCliLogHeader(
- userSettingService.GetUserSetting<string>(ASUserSettingConstants.HandBrakeVersion),
- userSettingService.GetUserSetting<int>(ASUserSettingConstants.HandBrakeBuild));
+ GeneralUtilities.CreateCliLogHeader();
this.LogIndex = 0;
}
|