diff options
author | sr55 <[email protected]> | 2009-09-03 10:52:29 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2009-09-03 10:52:29 +0000 |
commit | 2d2071ab5e70b291fd1fb9b5f44c5624350eefc4 (patch) | |
tree | 8ed5e2d4409d7ce18a88139e3fa951b690507f67 /win/C#/Presets/preset.cs | |
parent | 16aeb409c898386e42221c983f7ae515ecab0ceb (diff) |
WinGui:
- Simplify code in the preset handler.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2803 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Presets/preset.cs')
-rw-r--r-- | win/C#/Presets/preset.cs | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/win/C#/Presets/preset.cs b/win/C#/Presets/preset.cs index dd7628f3c..088d39c85 100644 --- a/win/C#/Presets/preset.cs +++ b/win/C#/Presets/preset.cs @@ -11,21 +11,11 @@ namespace Handbrake.Presets public class Preset
{
/// <summary>
- /// Get or Set the preset's level. This indicated if it is a root or child node
- /// </summary>
- public int Level { get; set; }
-
- /// <summary>
/// Get or Set the category which the preset resides under
/// </summary>
public string Category { get; set; }
/// <summary>
- /// Get or Set the top level category for the preset.
- /// </summary>
- public string TopCategory { get; set; }
-
- /// <summary>
/// Get or Set the preset name
/// </summary>
public string Name { get; set; }
|