diff options
author | sr55 <[email protected]> | 2011-08-15 16:54:19 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2011-08-15 16:54:19 +0000 |
commit | 44b2c7e69d5613631a4ab39a91e01b673046f030 (patch) | |
tree | 8fe8f170aea693a9993c44db3826a324a46cbd4b /win/CS/Program.cs | |
parent | 3e3deb33d5c5ec4aca3d6c855db646b511bf788b (diff) |
WinGui: Finished re-writing the user settings service to use xml file storage rather than built-in settings. Moved all the Services Library settings over to use the service. Main application will be done later.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4175 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/Program.cs')
-rw-r--r-- | win/CS/Program.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/CS/Program.cs b/win/CS/Program.cs index 4e7dfcbc0..406d8d0bb 100644 --- a/win/CS/Program.cs +++ b/win/CS/Program.cs @@ -67,7 +67,7 @@ namespace Handbrake // Going from major to major will require the user to reset.
// Going from svn to svn will attempt the upgrade.
UserSettingService service = new UserSettingService();
- string version = service.GetUserSettingString(UserSettingConstants.HandBrakeVersion);
+ string version = service.GetUserSetting<string>(UserSettingConstants.HandBrakeVersion);
if (version.Contains("svn"))
{
Settings.Default.Upgrade();
|