diff options
author | sr55 <[email protected]> | 2016-10-30 20:18:45 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2016-10-30 20:18:45 +0000 |
commit | 5cc2fbbca69eaac36d85d63b09cc3af39cee2cf2 (patch) | |
tree | b27c7cb02e6678fe85ef6f1f78b1ed4414572669 /win/CS/HandBrakeWPF/Startup | |
parent | 2c2947ac86ffbf4f5fa9111847ac31efd75c7d05 (diff) |
WinGui: Fix a large number of stylecop warnings.
Diffstat (limited to 'win/CS/HandBrakeWPF/Startup')
-rw-r--r-- | win/CS/HandBrakeWPF/Startup/StartupOptions.cs | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/win/CS/HandBrakeWPF/Startup/StartupOptions.cs b/win/CS/HandBrakeWPF/Startup/StartupOptions.cs index 634d2ecac..98634634e 100644 --- a/win/CS/HandBrakeWPF/Startup/StartupOptions.cs +++ b/win/CS/HandBrakeWPF/Startup/StartupOptions.cs @@ -1,5 +1,5 @@ // -------------------------------------------------------------------------------------------------------------------- -// <copyright file="AppBootstrapper.cs" company="HandBrake Project (http://handbrake.fr)"> +// <copyright file="StartupOptions.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> @@ -9,8 +9,14 @@ namespace HandBrakeWPF.Startup { + /// <summary> + /// The startup options. + /// </summary> public class StartupOptions { + /// <summary> + /// Gets or sets a value indicating whether auto restart queue. + /// </summary> public static bool AutoRestartQueue { get; set; } } } |