diff options
author | sr55 <[email protected]> | 2011-03-20 17:42:56 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2011-03-20 17:42:56 +0000 |
commit | fc436bc475affd57046a4408a60730ec6f3d2fa6 (patch) | |
tree | 74e8f7af70aa26eb0e9466d661b5e5d1f3191e72 /win/CS/HandBrake.ApplicationServices/Model/EncodeTask.cs | |
parent | 22393506f087fcb28e4aedab2e7a47d2ae6256ec (diff) |
WinGui:
- Minor error. Don't try to serialize a dictionary in a model.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3855 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices/Model/EncodeTask.cs')
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Model/EncodeTask.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Model/EncodeTask.cs b/win/CS/HandBrake.ApplicationServices/Model/EncodeTask.cs index e896960c0..8dfb5d031 100644 --- a/win/CS/HandBrake.ApplicationServices/Model/EncodeTask.cs +++ b/win/CS/HandBrake.ApplicationServices/Model/EncodeTask.cs @@ -278,7 +278,7 @@ namespace HandBrake.ApplicationServices.Model /// <summary>
/// Chapter Names
/// </summary>
- public Dictionary<int, string> ChapterNames { get; set; }
+ public List<string> ChapterNames { get; set; }
#endregion
|