diff options
author | sr55 <[email protected]> | 2010-02-27 18:19:28 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2010-02-27 18:19:28 +0000 |
commit | 477178a22e1508361828e11593e6bf2be6770c85 (patch) | |
tree | 68976637f6bc7361bb04618005b382818b65ce8b /win/C#/Controls | |
parent | da04bbd1b4b264b3d4c419b721699e658d50e545 (diff) |
WinGui:
- Moved the Activity Log Code out of the Activity window into the Encode and Scan services. They now provide the log data. (Some duplicate code here will need to be refactored into a base class later)
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3144 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Controls')
-rw-r--r-- | win/C#/Controls/x264Panel.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/C#/Controls/x264Panel.cs b/win/C#/Controls/x264Panel.cs index 27809415a..a33879632 100644 --- a/win/C#/Controls/x264Panel.cs +++ b/win/C#/Controls/x264Panel.cs @@ -142,8 +142,8 @@ namespace Handbrake.Controls /// Input: String. - Single X264 Option. Name only
/// Output: String - Single X264 Option. Name only. Changed to standard format
/// </summary>
- /// <param name="cleanOptNameString"></param>
- /// <returns></returns>
+ /// <param name="cleanOptNameString">a string of x264 options to clean</param>
+ /// <returns>A string containing standardized x264 option names</returns>
private static string X264_StandardizeOptNames(string cleanOptNameString)
{
string input = cleanOptNameString;
|