~ubuntu-branches/ubuntu/trusty/monodevelop/trusty-proposed

« back to all changes in this revision

Viewing changes to src/addins/MonoDevelop.Debugger/MonoDevelop.Debugger/ThreadsPad.cs

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2013-05-12 09:46:03 UTC
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20130512094603-mad323bzcxvmcam0
Tags: upstream-4.0.5+dfsg
ImportĀ upstreamĀ versionĀ 4.0.5+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
{
44
44
        public class ThreadsPad : Gtk.ScrolledWindow, IPadContent
45
45
        {
46
 
                MonoDevelop.Ide.Gui.Components.PadTreeView tree;
47
 
                Gtk.TreeStore store;
 
46
                PadTreeView tree;
 
47
                TreeStore store;
48
48
                
49
49
                TreeViewState treeViewState;
50
50
                
64
64
 
65
65
                        store = new TreeStore (typeof(string), typeof (string), typeof(string), typeof(object), typeof(int), typeof(string));
66
66
 
67
 
                        tree = new MonoDevelop.Ide.Gui.Components.PadTreeView (store);
 
67
                        tree = new PadTreeView (store);
68
68
                        tree.RulesHint = true;
69
69
                        tree.HeadersVisible = true;
70
70
                        treeViewState = new TreeViewState (tree, (int)Columns.Object);
132
132
                
133
133
                public void UpdateDisplay ()
134
134
                {
 
135
                        if (tree.IsRealized)
 
136
                                tree.ScrollToPoint (0, 0);
 
137
 
135
138
                        treeViewState.Save ();
136
139
                        
137
140
                        store.Clear ();