diff options
author | sr55 <[email protected]> | 2007-10-04 22:33:58 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2007-10-04 22:33:58 +0000 |
commit | 1ef4964589e409da57703fe68a202993b60315ac (patch) | |
tree | d248b9463bb662f92635dc665469730a3039de46 /win/C#/Properties | |
parent | e20b60acb5d0fd0eec5c28b631c0f61286ee5961 (diff) |
WinGui:
-Code to expire development builds
-New show/hide options for the new preset system.
-Few bug fixes.
-Updated Installer
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1000 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Properties')
-rw-r--r-- | win/C#/Properties/Settings.Designer.cs | 18 | ||||
-rw-r--r-- | win/C#/Properties/Settings.settings | 5 |
2 files changed, 19 insertions, 4 deletions
diff --git a/win/C#/Properties/Settings.Designer.cs b/win/C#/Properties/Settings.Designer.cs index adf46c1d6..c05a31e91 100644 --- a/win/C#/Properties/Settings.Designer.cs +++ b/win/C#/Properties/Settings.Designer.cs @@ -601,12 +601,24 @@ namespace Handbrake.Properties { [global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("")]
- public string SelectedPreset {
+ public string showPresets {
get {
- return ((string)(this["SelectedPreset"]));
+ return ((string)(this["showPresets"]));
}
set {
- this["SelectedPreset"] = value;
+ this["showPresets"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("")]
+ public string selectedPreset {
+ get {
+ return ((string)(this["selectedPreset"]));
+ }
+ set {
+ this["selectedPreset"] = value;
}
}
}
diff --git a/win/C#/Properties/Settings.settings b/win/C#/Properties/Settings.settings index 5758795a6..355fdc927 100644 --- a/win/C#/Properties/Settings.settings +++ b/win/C#/Properties/Settings.settings @@ -146,7 +146,10 @@ <Setting Name="BuiltInPresets" Type="System.Collections.Specialized.StringCollection" Scope="User">
<Value Profile="(Default)" />
</Setting>
- <Setting Name="SelectedPreset" Type="System.String" Scope="User">
+ <Setting Name="showPresets" Type="System.String" Scope="User">
+ <Value Profile="(Default)" />
+ </Setting>
+ <Setting Name="selectedPreset" Type="System.String" Scope="User">
<Value Profile="(Default)" />
</Setting>
</Settings>
|