diff options
author | sr55 <[email protected]> | 2010-02-20 22:30:12 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2010-02-20 22:30:12 +0000 |
commit | 3678fc6353c1b1bbea23723891cbf950f66ab452 (patch) | |
tree | 401d6f9b859ecac9fdf13fe432dd564589ac7276 /win/C#/Presets/Preset.cs | |
parent | b59b7b8733533aed4b97da6679e455df63049e23 (diff) |
WinGui:
- Cleanup more StyleCop warnings.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3131 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Presets/Preset.cs')
-rw-r--r-- | win/C#/Presets/Preset.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/win/C#/Presets/Preset.cs b/win/C#/Presets/Preset.cs index 088d39c85..ef6438740 100644 --- a/win/C#/Presets/Preset.cs +++ b/win/C#/Presets/Preset.cs @@ -4,10 +4,10 @@ Homepage: <http://handbrake.fr>.
It may be used under the terms of the GNU General Public License. */
-using System;
-
namespace Handbrake.Presets
{
+ using System;
+
public class Preset
{
/// <summary>
@@ -28,7 +28,7 @@ namespace Handbrake.Presets /// <summary>
/// Get or set the usage of Picture Settings in presets.
/// </summary>
- public Boolean PictureSettings { get; set; }
+ public bool PictureSettings { get; set; }
/// <summary>
/// The version number which associates this preset with a HB build
|