summaryrefslogtreecommitdiffstats
path: root/win/CS/frmOptions.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2011-03-27 20:08:33 +0000
committersr55 <[email protected]>2011-03-27 20:08:33 +0000
commitabd251048b392e86041325c1561e7a9dcd8067c3 (patch)
tree6f18df3389db6994e5f454e423880f73c7a5e8d6 /win/CS/frmOptions.cs
parent5b0977cc04f8d6471905f4090c7f18e6240988da (diff)
WinGui:
- Some move re factoring to push the logic code into the service library. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3885 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/frmOptions.cs')
-rw-r--r--win/CS/frmOptions.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/win/CS/frmOptions.cs b/win/CS/frmOptions.cs
index 7c95eac40..cbfafcd96 100644
--- a/win/CS/frmOptions.cs
+++ b/win/CS/frmOptions.cs
@@ -30,7 +30,7 @@ namespace Handbrake
InitializeComponent();
mainWindow = mw;
- IDictionary<string, string> langList = Main.MapLanguages();
+ IDictionary<string, string> langList = LanguageUtilities.MapLanguages();
foreach (string item in langList.Keys)
drop_preferredLang.Items.Add(item);
@@ -406,7 +406,7 @@ namespace Handbrake
MessageBoxButtons.YesNoCancel, MessageBoxIcon.Question);
if (result == DialogResult.Yes)
{
- UtilityService.ClearLogFiles(0);
+ GeneralUtilities.ClearLogFiles(0);
MessageBox.Show(this, "HandBrake's Log file directory has been cleared!", "Notice", MessageBoxButtons.OK,
MessageBoxIcon.Information);
}