Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Kestner <mkestner@gmail.com>2009-06-17 20:04:47 +0400
committerMike Kestner <mkestner@gmail.com>2009-06-17 20:04:47 +0400
commit598ab49642f95fc460882e2d926e69623b81d38f (patch)
treea4fa5be6a97cd79cee81a90f3323abcb217be65c /Mono.Profiler/Mono.Profiler.Widgets
parent67960c1870b369e1fc125b4e545f856784f450df (diff)
2009-06-17 Mike Kestner <mkestner@novell.com>
* CallsView.cs: Reorder columns to put cost first. svn path=/trunk/mono-tools/; revision=136328
Diffstat (limited to 'Mono.Profiler/Mono.Profiler.Widgets')
-rw-r--r--Mono.Profiler/Mono.Profiler.Widgets/CallsView.cs6
-rw-r--r--Mono.Profiler/Mono.Profiler.Widgets/ChangeLog4
2 files changed, 8 insertions, 2 deletions
diff --git a/Mono.Profiler/Mono.Profiler.Widgets/CallsView.cs b/Mono.Profiler/Mono.Profiler.Widgets/CallsView.cs
index 75347221..0529396e 100644
--- a/Mono.Profiler/Mono.Profiler.Widgets/CallsView.cs
+++ b/Mono.Profiler/Mono.Profiler.Widgets/CallsView.cs
@@ -30,9 +30,11 @@ namespace Mono.Profiler.Widgets {
public CallsView (ProfilerEventHandler data) : base ()
{
- AppendColumn ("Method", new CellRendererText (), "text", 0);
- AppendColumn ("Cost", new CellRendererText (), "text", 1);
Model = new TreeModelAdapter (new CallsStore (data));
+ AppendColumn ("Cost", new CellRendererText (), "text", 1);
+ TreeViewColumn col = new TreeViewColumn ("Method", new CellRendererText (), "text", 0);
+ AppendColumn (col);
+ ExpanderColumn = col;
}
}
}
diff --git a/Mono.Profiler/Mono.Profiler.Widgets/ChangeLog b/Mono.Profiler/Mono.Profiler.Widgets/ChangeLog
index e64f7b11..e21a0dfa 100644
--- a/Mono.Profiler/Mono.Profiler.Widgets/ChangeLog
+++ b/Mono.Profiler/Mono.Profiler.Widgets/ChangeLog
@@ -1,5 +1,9 @@
2009-06-17 Mike Kestner <mkestner@novell.com>
+ * CallsView.cs: Reorder columns to put cost first.
+
+2009-06-17 Mike Kestner <mkestner@novell.com>
+
* AllocationsStore.cs: Allocations subclass of the new ProfileStore.
* AllocationsView.cs: new Allocations tree view.
* CallsStore.cs: refactor as ProfileStore subclass with CallsNode