diff options
author | sr55 <[email protected]> | 2011-03-19 15:46:21 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2011-03-19 15:46:21 +0000 |
commit | 64503043ab114ffa207431c5c6a2293f1936278d (patch) | |
tree | 5fc4b346b4fa2a3db174d5ebd9284a56a2e1ad2b /win/CS/frmOptions.cs | |
parent | 6e531a9eadeeed119e9dbec4e642bde5ff7c42e9 (diff) |
WinGui:
- Improvements to the log window code.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3850 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/frmOptions.cs')
-rw-r--r-- | win/CS/frmOptions.cs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/win/CS/frmOptions.cs b/win/CS/frmOptions.cs index 1a3fd1919..7c95eac40 100644 --- a/win/CS/frmOptions.cs +++ b/win/CS/frmOptions.cs @@ -12,11 +12,9 @@ namespace Handbrake using System.Windows.Forms;
using HandBrake.ApplicationServices;
- using HandBrake.ApplicationServices.Services;
using HandBrake.ApplicationServices.Utilities;
using Handbrake.Functions;
- using Handbrake.Model;
using Handbrake.Properties;
/// <summary>
@@ -408,7 +406,7 @@ namespace Handbrake MessageBoxButtons.YesNoCancel, MessageBoxIcon.Question);
if (result == DialogResult.Yes)
{
- UtilityService.ClearLogFiles(30);
+ UtilityService.ClearLogFiles(0);
MessageBox.Show(this, "HandBrake's Log file directory has been cleared!", "Notice", MessageBoxButtons.OK,
MessageBoxIcon.Information);
}
|