X-Git-Url: http://git.osdn.jp/view?a=blobdiff_plain;f=win%2FC%23%2FProgram.cs;h=282f9f528e99a2ba756b823268533bcd19f3f3b3;hb=b8c7cf18f82ad8552e4a79ab3e93794a2e7759e5;hp=64ef81b6bfd687e2b1351c10d37000339fab7e6c;hpb=9cbbcfbb3e059d39a57dff1d2322b77eeba1cc9b;p=handbrake-jp%2Fhandbrake-jp-git.git diff --git a/win/C#/Program.cs b/win/C#/Program.cs index 64ef81b6..282f9f52 100644 --- a/win/C#/Program.cs +++ b/win/C#/Program.cs @@ -21,7 +21,7 @@ namespace Handbrake { Screen scr = Screen.PrimaryScreen; if ((scr.Bounds.Width < 1024) || (scr.Bounds.Height < 620)) - MessageBox.Show("Your system does not meet the minimum requirements for HandBrake. \n" + "Your screen is running at: " + scr.Bounds.Width + "x" + scr.Bounds.Height + " \nScreen resolution is too Low. Must be 1024x720 or greater", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); + MessageBox.Show("Your system does not meet the minimum requirements for HandBrake. \n" + "Your screen is running at: " + scr.Bounds.Width + "x" + scr.Bounds.Height + " \nScreen resolution is too Low. Must be 1024x620 or greater", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); else { string logDir = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), @"HandBrake\logs"); @@ -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();