diff options
author | sr55 <[email protected]> | 2009-09-03 10:52:29 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2009-09-03 10:52:29 +0000 |
commit | 2d2071ab5e70b291fd1fb9b5f44c5624350eefc4 (patch) | |
tree | 8ed5e2d4409d7ce18a88139e3fa951b690507f67 /win/C#/Program.cs | |
parent | 16aeb409c898386e42221c983f7ae515ecab0ceb (diff) |
WinGui:
- Simplify code in the preset handler.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2803 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Program.cs')
-rw-r--r-- | win/C#/Program.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/C#/Program.cs b/win/C#/Program.cs index 64ef81b6b..71f1385f2 100644 --- a/win/C#/Program.cs +++ b/win/C#/Program.cs @@ -31,7 +31,7 @@ namespace Handbrake if (!File.Exists(Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), @"HandBrake\presets.xml")))
{
PresetsHandler x = new PresetsHandler();
- x.updateBuiltInPresets();
+ x.UpdateBuiltInPresets();
}
Application.EnableVisualStyles();
|