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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremie Laval <jeremie.laval@gmail.com>2012-11-29 19:18:52 +0400
committerJeremie Laval <jeremie.laval@gmail.com>2012-11-29 19:21:06 +0400
commitb9145210c136a9fa5774a94b772fa04487473fb7 (patch)
tree12cea9547679a2dbdcbdfc68d37a567e5b23a0f6
parentf523f022bddda14692822858e1467c1b8a4bb650 (diff)
[monkeydoc] Proxy back GetCachedHelpStream to the right member
-rw-r--r--mcs/tools/monkeydoc/Monkeydoc/providers/ecma-provider.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/tools/monkeydoc/Monkeydoc/providers/ecma-provider.cs b/mcs/tools/monkeydoc/Monkeydoc/providers/ecma-provider.cs
index bb0ef52cfec..d91bcdf2024 100644
--- a/mcs/tools/monkeydoc/Monkeydoc/providers/ecma-provider.cs
+++ b/mcs/tools/monkeydoc/Monkeydoc/providers/ecma-provider.cs
@@ -292,7 +292,7 @@ namespace MonkeyDoc.Providers
public override Stream GetCachedHelpStream (string id)
{
var idParts = id.Split ('?');
- return base.GetHelpStream (idParts[0]);
+ return base.GetCachedHelpStream (idParts[0]);
}
public override DocumentType GetDocumentTypeForId (string id, out Dictionary<string, string> extraParams)