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:
authorMike Krüger <mkrueger@xamarin.com>2011-09-14 12:33:54 +0400
committerMike Krüger <mkrueger@xamarin.com>2011-09-14 12:34:20 +0400
commitea1d0d0cda6653ef40aecb860aa36b76a2bc77f5 (patch)
tree3d67a67a32f92b908b4bac4fe4d032dca6b402fc /main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Dialogs
parent20dad0746a093ca5980be2bd27b5ddddafcb8694 (diff)
[IDE] Moved the about information to another path.monodevelop-2.7.21
Diffstat (limited to 'main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Dialogs')
-rw-r--r--main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Dialogs/CommonAboutDialog.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Dialogs/CommonAboutDialog.cs b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Dialogs/CommonAboutDialog.cs
index a199126edd..11aa57acc0 100644
--- a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Dialogs/CommonAboutDialog.cs
+++ b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Dialogs/CommonAboutDialog.cs
@@ -56,11 +56,11 @@ namespace MonoDevelop.Ide.Gui.Dialogs
internal class CommonAboutDialog : Dialog
{
- public static List<IAboutInformation> AdditionalInformation = new List<IAboutInformation> ();
+ public static readonly List<IAboutInformation> AdditionalInformation = new List<IAboutInformation> ();
static CommonAboutDialog ()
{
- AddinManager.AddExtensionNodeHandler ("/MonoDevelop/Ide/AboutBoxInformation", delegate(object sender, ExtensionNodeEventArgs args) {
+ AddinManager.AddExtensionNodeHandler ("/MonoDevelop/Ide/AboutInformation", delegate(object sender, ExtensionNodeEventArgs args) {
var codon = (IAboutInformation)args.ExtensionObject;
switch (args.Change) {
case ExtensionChange.Add: