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:
authorLluis Sanchez <lluis@xamarin.com>2011-10-31 21:58:12 +0400
committerLluis Sanchez <lluis@xamarin.com>2011-10-31 22:00:16 +0400
commit2e123cd243c0aefc99cc2f47a5cd0cd038cf0d65 (patch)
tree2e11ee055e006a504a4162316bb6f32653469e12 /main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Dialogs
parent773ce927d9a3943248dde03ce3f874a239cd8ade (diff)
[Ide] Unbreak the api
The IAboutInformation interface can't be removed because that would break the api, which is supposed to be backwards compatible (for now).
Diffstat (limited to 'main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Dialogs')
-rw-r--r--main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Dialogs/VersionInformationTabPage.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Dialogs/VersionInformationTabPage.cs b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Dialogs/VersionInformationTabPage.cs
index f1ff1a2298..8af4873ea6 100644
--- a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Dialogs/VersionInformationTabPage.cs
+++ b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Dialogs/VersionInformationTabPage.cs
@@ -39,6 +39,14 @@ using Mono.Addins;
namespace MonoDevelop.Ide.Gui.Dialogs
{
+ [ObsoleteAttribute ("Use ISystemInformationProvider")]
+ public interface IAboutInformation
+ {
+ string Description {
+ get;
+ }
+ }
+
internal class VersionInformationTabPage: VBox
{
//FIXME: move this somewhere it can be accessed by the error reporting code