~ubuntu-branches/ubuntu/natty/monodevelop/natty

« back to all changes in this revision

Viewing changes to src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Pads.ClassPad/ClassBrowserPadWidget.cs

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2010-01-07 19:06:58 UTC
  • mto: (1.6.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 46.
  • Revision ID: james.westby@ubuntu.com-20100107190658-z9z95lgk4kwfes7p
ImportĀ upstreamĀ versionĀ 2.2+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
170
170
                        DispatchService.GuiDispatch (list.Clear);
171
171
                        
172
172
                        ThreadStart start = new ThreadStart (SearchThread);
173
 
                        searchThread = new Thread (start);
174
 
                        searchThread.IsBackground = true;
175
 
                        searchThread.Priority = ThreadPriority.Lowest;
 
173
                        searchThread = new Thread (start) {
 
174
                                Name = "Class pad search",
 
175
                                IsBackground = true,
 
176
                                Priority = ThreadPriority.Lowest,
 
177
                        };
176
178
                        searchThread.Start ();
177
179
                }
178
180