[svn]
r7784: vs-plugin/trunk/Nemerle.VsIntegration/LanguageService/NemerleViewFilter.cs
kliss
svnadmin at nemerle.org
Tue Sep 4 19:38:38 CEST 2007
Log:
Undo special handling of ToggleAllOutlining command.
Author: kliss
Date: Tue Sep 4 19:38:31 2007
New Revision: 7784
Modified:
vs-plugin/trunk/Nemerle.VsIntegration/LanguageService/NemerleViewFilter.cs
Modified: vs-plugin/trunk/Nemerle.VsIntegration/LanguageService/NemerleViewFilter.cs
==============================================================================
--- vs-plugin/trunk/Nemerle.VsIntegration/LanguageService/NemerleViewFilter.cs (original)
+++ vs-plugin/trunk/Nemerle.VsIntegration/LanguageService/NemerleViewFilter.cs Tue Sep 4 19:38:31 2007
@@ -395,15 +395,15 @@
ref Guid guidCmdGroup, uint nCmdId, uint nCmdexecopt, IntPtr pvaIn, IntPtr pvaOut, bool bufferWasChanged)
{
// Special handling of "Toggle all outlining" command
- if (guidCmdGroup == typeof(VsCommands2K).GUID)
- {
- if ((VsCommands2K)nCmdId == VsCommands2K.OUTLN_TOGGLE_ALL)
- {
- Source.CollapseAllRegions();
- return;
- }
- }
- base.HandlePostExec(ref guidCmdGroup, nCmdId, nCmdexecopt, pvaIn, pvaOut, bufferWasChanged);
+ //if (guidCmdGroup == typeof(VsCommands2K).GUID)
+ //{
+ // if ((VsCommands2K)nCmdId == VsCommands2K.OUTLN_TOGGLE_ALL)
+ // {
+ // Source.CollapseAllRegions();
+ // return;
+ // }
+ //}
+ //base.HandlePostExec(ref guidCmdGroup, nCmdId, nCmdexecopt, pvaIn, pvaOut, bufferWasChanged);
if (_startLine >= 0 && Source.MethodData.IsDisplayed)
{
More information about the svn
mailing list