summaryrefslogtreecommitdiffstats
path: root/win/C#/frmOptions.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2010-01-09 14:52:47 +0000
committersr55 <[email protected]>2010-01-09 14:52:47 +0000
commita7bc400d8ee9d45a0b0de3cadb2e0fb8060511a6 (patch)
treef7188d617425eae9b3594d91b840dd2025c122db /win/C#/frmOptions.cs
parent8113fe2b558b8c7c3943354a2cd298b883af7d09 (diff)
WinGui:
- Implemented the point to point - seconds mode. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3055 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmOptions.cs')
-rw-r--r--win/C#/frmOptions.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/win/C#/frmOptions.cs b/win/C#/frmOptions.cs
index 5f5977aca..790c20ec6 100644
--- a/win/C#/frmOptions.cs
+++ b/win/C#/frmOptions.cs
@@ -21,7 +21,7 @@ namespace Handbrake
InitializeComponent();
mainWindow = mw;
- IDictionary<string, string> langList = Main.mapLanguages();
+ IDictionary<string, string> langList = Main.MapLanguages();
foreach (string item in langList.Keys)
drop_preferredLang.Items.Add(item);
@@ -352,7 +352,7 @@ namespace Handbrake
DialogResult result = MessageBox.Show("Are you sure you wish to clear the log file directory?", "Clear Logs", MessageBoxButtons.YesNoCancel, MessageBoxIcon.Question);
if (result == DialogResult.Yes)
{
- Main.clearLogs();
+ Main.ClearLogs();
MessageBox.Show(this, "HandBrake's Log file directory has been cleared!", "Notice", MessageBoxButtons.OK,
MessageBoxIcon.Information);
}