diff options
author | sr55 <[email protected]> | 2009-09-30 14:39:12 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2009-09-30 14:39:12 +0000 |
commit | 6a2e47339a1dd65c4866c1d907f6b74565953e02 (patch) | |
tree | 594ec3a1de7da1255432844de2d7540453f5b033 /win/C#/EncodeQueue/Job.cs | |
parent | 7a88c8b6b3a1ba9f5ca08d1c9b235b0dfd2d1d1d (diff) |
WinGui:
- Add a notice to the log to indicate if the user has used a custom query.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2854 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/EncodeQueue/Job.cs')
-rw-r--r-- | win/C#/EncodeQueue/Job.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/win/C#/EncodeQueue/Job.cs b/win/C#/EncodeQueue/Job.cs index e912fd65a..7dfe7e518 100644 --- a/win/C#/EncodeQueue/Job.cs +++ b/win/C#/EncodeQueue/Job.cs @@ -4,6 +4,8 @@ Homepage: <http://handbrake.fr>.
It may be used under the terms of the GNU General Public License. */
+using System;
+
namespace Handbrake.EncodeQueue
{
public struct Job
@@ -19,6 +21,11 @@ namespace Handbrake.EncodeQueue public string Query { get; set; }
/// <summary>
+ /// record if this is a user or GUI generated query
+ /// </summary>
+ public Boolean CustomQuery { get; set; }
+
+ /// <summary>
/// Gets or sets the source file of encoding.
/// </summary>
public string Source { get; set; }
|