diff options
author | sr55 <[email protected]> | 2015-01-02 21:18:44 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2015-01-02 21:18:44 +0000 |
commit | 5381c32a099538cc0e63d5393f26c6aa607b5eee (patch) | |
tree | 1500398a8ce1a229ead477ccc83e95b657e7f2c8 /win/CS/HandBrake.ApplicationServices/Services/Scan/LibScan.cs | |
parent | c919eaba0bdf52a41443e2845e445de9582c5de3 (diff) |
WinGui: Bug fixes to the libhb json encode factory and surrounding classes. Encoding is now working, but some settings are not fully honoured yet.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6681 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices/Services/Scan/LibScan.cs')
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Services/Scan/LibScan.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Services/Scan/LibScan.cs b/win/CS/HandBrake.ApplicationServices/Services/Scan/LibScan.cs index 3666ce869..d857e75f5 100644 --- a/win/CS/HandBrake.ApplicationServices/Services/Scan/LibScan.cs +++ b/win/CS/HandBrake.ApplicationServices/Services/Scan/LibScan.cs @@ -469,7 +469,7 @@ namespace HandBrake.ApplicationServices.Services.Scan /// <returns>
/// The convert titles.
/// </returns>
- private static List<Title> ConvertTitles(IEnumerable<Interop.Model.Scan.Title> titles, int featureTitle)
+ internal static List<Title> ConvertTitles(IEnumerable<Interop.Model.Scan.Title> titles, int featureTitle)
{
List<Title> titleList = new List<Title>();
foreach (Interop.Model.Scan.Title title in titles)
|