~ubuntu-branches/ubuntu/saucy/monodevelop/saucy-proposed

« back to all changes in this revision

Viewing changes to src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.OptionPanels/TasksOptionsPanel.cs

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2010-09-10 16:54:48 UTC
  • mfrom: (19.1.1 experimental)
  • Revision ID: james.westby@ubuntu.com-20100910165448-0rybfk25zd4o9431
Tags: 2.4+dfsg-2
* debian/patches/inject_Mono.Debugger.Soft_source.patch,
  debian/patches/use_system_Mono.Debugger.Soft.patch,
  debian/control:
  + Build against system Soft Debugger, since we now have a new
    enough Mono to match MonoDevelop's required API

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
using System.IO;
32
32
using System.Text;
33
33
using MonoDevelop.Core;
34
 
using MonoDevelop.Core.Gui.Components;
35
 
using MonoDevelop.Core.Gui.Dialogs;
 
34
using MonoDevelop.Ide.Gui.Dialogs;
36
35
using MonoDevelop.Components;
37
36
using MonoDevelop.Ide.Tasks;
38
37
using MonoDevelop.Projects.Dom.Parser;
181
180
                        foreach (object[] row in tokensStore)
182
181
                                tags.Add (new CommentTag ((string)row[0], (int)row[1]));
183
182
 
 
183
                        ProjectDomService.SpecialCommentTags = new CommentTagSet (tags);
 
184
                        
184
185
                        PropertyService.Set ("Monodevelop.UserTasksHighPrioColor", ColorToString (colorbuttonHighPrio.Color));
185
186
                        PropertyService.Set ("Monodevelop.UserTasksNormalPrioColor", ColorToString (colorbuttonNormalPrio.Color));
186
187
                        PropertyService.Set ("Monodevelop.UserTasksLowPrioColor", ColorToString (colorbuttonLowPrio.Color));