~ubuntu-branches/ubuntu/oneiric/monodevelop/oneiric-updates

« back to all changes in this revision

Viewing changes to src/core/MonoDevelop.Ide/MonoDevelop.Ide.Tasks/UserTask.cs

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2009-02-18 08:40:51 UTC
  • mfrom: (1.2.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20090218084051-gh8m6ukvokbwj7cf
Tags: 1.9.2+dfsg-1ubuntu1
* Merge from Debian Experimental (LP: #330519), remaining Ubuntu changes:
  + debian/control:
    - Update for Gnome# 2.24
    - Add libmono-cairo1.0-cil to build-deps to fool pkg-config check

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
using System.Runtime.Serialization;
32
32
using System.Xml.Serialization;
33
33
using MonoDevelop.Core;
 
34
using MonoDevelop.Projects;
34
35
 
35
36
namespace MonoDevelop.Ide.Tasks
36
37
{
37
38
        public class UserTask
38
 
        {       
39
 
                
 
39
        {
40
40
                TaskPriority priority = TaskPriority.Normal;
41
41
                bool completed = false;
42
42
                string description;
 
43
                Solution solution;
43
44
                
44
45
                public TaskPriority Priority
45
46
                {
58
59
                        get { return description; }
59
60
                        set { description = value; }
60
61
                }
 
62
 
 
63
                [System.Xml.Serialization.XmlIgnoreAttribute]
 
64
                public Solution Solution {
 
65
                        get {
 
66
                                return solution;
 
67
                        }
 
68
                        internal set {
 
69
                                solution = value;
 
70
                        }
 
71
                }
61
72
                
62
73
                public override string ToString ()
63
74
                {