summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/Model
diff options
context:
space:
mode:
authorsr55 <[email protected]>2016-10-30 20:18:45 +0000
committersr55 <[email protected]>2016-10-30 20:18:45 +0000
commit5cc2fbbca69eaac36d85d63b09cc3af39cee2cf2 (patch)
treeb27c7cb02e6678fe85ef6f1f78b1ed4414572669 /win/CS/HandBrakeWPF/Model
parent2c2947ac86ffbf4f5fa9111847ac31efd75c7d05 (diff)
WinGui: Fix a large number of stylecop warnings.
Diffstat (limited to 'win/CS/HandBrakeWPF/Model')
-rw-r--r--win/CS/HandBrakeWPF/Model/Audio/AudioBehaviourTrack.cs32
1 files changed, 16 insertions, 16 deletions
diff --git a/win/CS/HandBrakeWPF/Model/Audio/AudioBehaviourTrack.cs b/win/CS/HandBrakeWPF/Model/Audio/AudioBehaviourTrack.cs
index b775c06b7..d5350439a 100644
--- a/win/CS/HandBrakeWPF/Model/Audio/AudioBehaviourTrack.cs
+++ b/win/CS/HandBrakeWPF/Model/Audio/AudioBehaviourTrack.cs
@@ -1,5 +1,5 @@
// --------------------------------------------------------------------------------------------------------------------
-// <copyright file="AudioTrack.cs" company="HandBrake Project (http://handbrake.fr)">
+// <copyright file="AudioBehaviourTrack.cs" company="HandBrake Project (http://handbrake.fr)">
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
// </copyright>
// <summary>
@@ -40,7 +40,7 @@ namespace HandBrakeWPF.Model.Audio
private double? quality;
/// <summary>
- /// Initializes a new instance of the <see cref = "AudioTrack" /> class.
+ /// Initializes a new instance of the <see cref="AudioBehaviourTrack"/> class.
/// </summary>
public AudioBehaviourTrack()
{
@@ -55,7 +55,7 @@ namespace HandBrakeWPF.Model.Audio
}
/// <summary>
- /// Initializes a new instance of the <see cref="AudioTrack"/> class.
+ /// Initializes a new instance of the <see cref="AudioBehaviourTrack"/> class.
/// Copy Constructor
/// </summary>
/// <param name="track">
@@ -573,24 +573,24 @@ namespace HandBrakeWPF.Model.Audio
/// </summary>
private void GetDefaultMixdownIfNull()
{
- //if (this.ScannedTrack == null)
- //{
+ // if (this.ScannedTrack == null)
+ // {
// return;
- //}
+ // }
- //HBAudioEncoder aencoder = HandBrakeEncoderHelpers.GetAudioEncoder(EnumHelper<AudioEncoder>.GetShortName(this.encoder));
- //HBMixdown currentMixdown = HandBrakeEncoderHelpers.GetMixdown(this.mixDown);
- //HBMixdown sanitisedMixdown = HandBrakeEncoderHelpers.SanitizeMixdown(currentMixdown, aencoder, (uint)this.ScannedTrack.ChannelLayout);
- //HBMixdown defaultMixdown = HandBrakeEncoderHelpers.GetDefaultMixdown(aencoder, (uint)this.ScannedTrack.ChannelLayout);
+ // HBAudioEncoder aencoder = HandBrakeEncoderHelpers.GetAudioEncoder(EnumHelper<AudioEncoder>.GetShortName(this.encoder));
+ // HBMixdown currentMixdown = HandBrakeEncoderHelpers.GetMixdown(this.mixDown);
+ // HBMixdown sanitisedMixdown = HandBrakeEncoderHelpers.SanitizeMixdown(currentMixdown, aencoder, (uint)this.ScannedTrack.ChannelLayout);
+ // HBMixdown defaultMixdown = HandBrakeEncoderHelpers.GetDefaultMixdown(aencoder, (uint)this.ScannedTrack.ChannelLayout);
- //if (this.mixDown == null || this.mixDown == "none")
- //{
+ // if (this.mixDown == null || this.mixDown == "none")
+ // {
// this.MixDown = defaultMixdown.ShortName;
- //}
- //else if (sanitisedMixdown != null)
- //{
+ // }
+ // else if (sanitisedMixdown != null)
+ // {
// this.MixDown = sanitisedMixdown.ShortName;
- //}
+ // }
}
#endregion