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:
authorUngureanu Marius <teromario@yahoo.com>2014-04-04 17:39:33 +0400
committerUngureanu Marius <teromario@yahoo.com>2014-04-04 17:39:33 +0400
commit987f0b143de206c826015cc099100891d276bbc1 (patch)
tree9bd3eeb00cbf33ee9bbffc4585c3afb80d00c631 /main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Navigation
parent5be6dbd6b0fefe4b58a3df6cb3a70cc7bf99fe6e (diff)
[API] More API removal.
Diffstat (limited to 'main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Navigation')
-rw-r--r--main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Navigation/DocumentNavigationPoint.cs6
-rw-r--r--main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Navigation/NavigationPoint.cs6
2 files changed, 0 insertions, 12 deletions
diff --git a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Navigation/DocumentNavigationPoint.cs b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Navigation/DocumentNavigationPoint.cs
index f6cac13494..d0f82bfe1e 100644
--- a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Navigation/DocumentNavigationPoint.cs
+++ b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Navigation/DocumentNavigationPoint.cs
@@ -77,12 +77,6 @@ namespace MonoDevelop.Ide.Navigation
get { return doc != null? doc.FileName : fileName; }
}
- [Obsolete ("Will be removed. Please use ShowDocument.")]
- public override void Show ()
- {
- DoShow ();
- }
-
public override Document ShowDocument ()
{
return DoShow ();
diff --git a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Navigation/NavigationPoint.cs b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Navigation/NavigationPoint.cs
index ac9fb22bf6..7455083ace 100644
--- a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Navigation/NavigationPoint.cs
+++ b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Navigation/NavigationPoint.cs
@@ -35,14 +35,8 @@ namespace MonoDevelop.Ide.Navigation
public abstract string DisplayName { get; }
//public abstract string Tooltip { get; }
- [Obsolete ("Will be removed. Please use ShowDocument.")]
- public abstract void Show ();
-
public virtual Document ShowDocument ()
{
-#pragma warning disable 618
- Show ();
-#pragma warning restore 618
return null;
}