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 21:15:49 +0400
committerMike Kestner <mkestner@gmail.com>2009-06-17 21:15:49 +0400
commit611e542133db7795cb5f90b653eef8b1e9cac70f (patch)
treedf79d777b5e1e86269ad2d7146e9798ef1e6e1b3 /Mono.Profiler
parent7f31cc3a96498176e27d0150b0c727876e6dcc30 (diff)
2009-06-17 Mike Kestner <mkestner@novell.com>
* MainWindow.cs : Save is ctrl-s not c. svn path=/trunk/mono-tools/; revision=136331
Diffstat (limited to 'Mono.Profiler')
-rw-r--r--Mono.Profiler/mprof-gui/ChangeLog4
-rw-r--r--Mono.Profiler/mprof-gui/MainWindow.cs2
2 files changed, 5 insertions, 1 deletions
diff --git a/Mono.Profiler/mprof-gui/ChangeLog b/Mono.Profiler/mprof-gui/ChangeLog
index c0e9f412..f2376e36 100644
--- a/Mono.Profiler/mprof-gui/ChangeLog
+++ b/Mono.Profiler/mprof-gui/ChangeLog
@@ -1,5 +1,9 @@
2009-06-17 Mike Kestner <mkestner@novell.com>
+ * MainWindow.cs : Save is ctrl-s not c.
+
+2009-06-17 Mike Kestner <mkestner@novell.com>
+
* MainWindow.cs : add accelerators for stock menu items.
2009-06-11 Mike Kestner <mkestner@novell.com>
diff --git a/Mono.Profiler/mprof-gui/MainWindow.cs b/Mono.Profiler/mprof-gui/MainWindow.cs
index c75cd7e7..e87217a8 100644
--- a/Mono.Profiler/mprof-gui/MainWindow.cs
+++ b/Mono.Profiler/mprof-gui/MainWindow.cs
@@ -74,7 +74,7 @@ namespace Mono.Profiler.Gui {
ActionEntry[] actions = new ActionEntry[] {
new ActionEntry ("ProfileMenu", null, Catalog.GetString ("_Profile"), null, null, null),
new ActionEntry ("NewAction", Stock.New, null, "<control>N", Catalog.GetString ("Create New Profile"), new EventHandler (OnNewActivated)),
- new ActionEntry ("SaveAsAction", Stock.SaveAs, null, "<control>C", Catalog.GetString ("Save Profile Data"), new EventHandler (OnSaveAsActivated)),
+ new ActionEntry ("SaveAsAction", Stock.SaveAs, null, "<control>S", Catalog.GetString ("Save Profile Data"), new EventHandler (OnSaveAsActivated)),
new ActionEntry ("QuitAction", Stock.Quit, null, "<control>Q", Catalog.GetString ("Quit Profiler"), new EventHandler (OnQuitActivated)),
};