Browse Source

Change "Private members" to "Non-Public members"

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@2915 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
David Srbecký 18 years ago
parent
commit
1db26b451a
  1. 4
      src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/TreeModel/ChildNodesOfObject.cs

4
src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/TreeModel/ChildNodesOfObject.cs

@ -71,7 +71,7 @@ namespace Debugger.AddIn.TreeModel
this.targetObject = targetObject; this.targetObject = targetObject;
this.shownType = shownType; this.shownType = shownType;
this.Name = StringParser.Parse("${res:MainWindow.Windows.Debug.LocalVariables.PrivateMembers}"); this.Name = StringParser.Parse("${res:MainWindow.Windows.Debug.LocalVariables.NonPublicMembers}");
this.ChildNodes = GetChildNodes(); this.ChildNodes = GetChildNodes();
} }
@ -122,7 +122,7 @@ namespace Debugger.AddIn.TreeModel
this.targetObject = targetObject; this.targetObject = targetObject;
this.shownType = shownType; this.shownType = shownType;
this.Name = StringParser.Parse("${res:MainWindow.Windows.Debug.LocalVariables.PrivateStaticMembers}"); this.Name = StringParser.Parse("${res:MainWindow.Windows.Debug.LocalVariables.NonPublicStaticMembers}");
this.ChildNodes = GetChildNodes(); this.ChildNodes = GetChildNodes();
} }

Loading…
Cancel
Save