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

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Hutchinson <mhutch@xamarin.com>2012-01-05 07:51:32 +0400
committerMichael Hutchinson <mhutch@xamarin.com>2012-01-05 07:51:32 +0400
commit7baa5269e6a92b53e4e9ddc9120b81e3325f1a6b (patch)
treefa3e0caa4756a39666ce552dabc9688197f2f9a4
parent6a52e3bb6376437a7e675cd0b3ae881cbd1eb267 (diff)
[Ide] Remove unused code
-rw-r--r--main/src/core/MonoDevelop.Ide/MonoDevelop.Ide/MessageService.cs3
1 files changed, 0 insertions, 3 deletions
diff --git a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide/MessageService.cs b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide/MessageService.cs
index 0e6701f188..3fa453c588 100644
--- a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide/MessageService.cs
+++ b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide/MessageService.cs
@@ -39,10 +39,8 @@ namespace MonoDevelop.Ide
{
public class AlertButton
{
- public static AlertButton Always = new AlertButton (GettextCatalog.GetString ("_Always"));
public static AlertButton Ok = new AlertButton (Gtk.Stock.Ok, true);
public static AlertButton Yes = new AlertButton (Gtk.Stock.Yes, true);
- public static AlertButton Never = new AlertButton (GettextCatalog.GetString ("_Never"));
public static AlertButton No = new AlertButton (Gtk.Stock.No, true);
public static AlertButton Close = new AlertButton (Gtk.Stock.Close, true);
public static AlertButton Cancel = new AlertButton (Gtk.Stock.Cancel, true);
@@ -61,7 +59,6 @@ namespace MonoDevelop.Ide
public static AlertButton Stop = new AlertButton (Gtk.Stock.Stop, true);
public static AlertButton Proceed = new AlertButton (GettextCatalog.GetString ("_Proceed"));
public static AlertButton Replace = new AlertButton (GettextCatalog.GetString ("_Replace"));
- public static AlertButton ThisTimeOnly = new AlertButton (GettextCatalog.GetString ("_This time only"));
public static AlertButton OverwriteFile = new AlertButton (GettextCatalog.GetString ("_Overwrite file"));