diff options
author | sr55 <[email protected]> | 2011-01-03 20:15:10 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2011-01-03 20:15:10 +0000 |
commit | ee94883ba1b2e3d0dc432c84a2c05db5812fe1c6 (patch) | |
tree | a279256432b524c06048a8b7e4aa6b90e913c3c0 /win/C#/HandBrake.ApplicationServices/Model | |
parent | b1ab0c5b00eef003cb737414e77e4f12ad25b854 (diff) |
WinGui:
- Second attempt at fixing file path problems.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3736 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/HandBrake.ApplicationServices/Model')
-rw-r--r-- | win/C#/HandBrake.ApplicationServices/Model/Job.cs | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/win/C#/HandBrake.ApplicationServices/Model/Job.cs b/win/C#/HandBrake.ApplicationServices/Model/Job.cs index a18a6117c..536069153 100644 --- a/win/C#/HandBrake.ApplicationServices/Model/Job.cs +++ b/win/C#/HandBrake.ApplicationServices/Model/Job.cs @@ -11,11 +11,6 @@ namespace HandBrake.ApplicationServices.Model public class Job
{
/// <summary>
- /// the CLI Query.
- /// </summary>
- private string query;
-
- /// <summary>
/// Gets or sets the job ID.
/// </summary>
public int Id { get; set; }
@@ -28,17 +23,7 @@ namespace HandBrake.ApplicationServices.Model /// <summary>
/// Gets or sets the query string.
/// </summary>
- public string Query
- {
- get
- {
- return this.query.Replace("\\\"", "\"").Replace("\\\\", "\\");
- }
- set
- {
- this.query = value;
- }
- }
+ public string Query { get; set; }
/// <summary>
/// Gets or sets a value indicating whether if this is a user or GUI generated query
|